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.
42 lines
827 B
JSON
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": {}
|
|
}
|