onyx-tasks/apps/tauri/src-tauri/tauri.conf.json
Tristan Michael a7709f80cc chore: restrict bundle targets to appimage and deb, remove bad schema
Remove the incorrect $schema pointing to a NiceGUI URL. Change bundle
targets from "all" to ["appimage", "deb"] to avoid rpm build failures
on machines without rpm tools.
2026-04-01 01:06:10 -07:00

42 lines
827 B
JSON

{
"productName": "Onyx",
"version": "0.1.0",
"identifier": "com.onyx.app",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:1422",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"withGlobalTauri": false,
"windows": [
{
"title": "Onyx",
"width": 400,
"height": 700,
"minWidth": 320,
"minHeight": 500,
"resizable": true,
"decorations": false,
"transparent": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": ["appimage", "deb"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"plugins": {}
}