43 lines
926 B
JSON
43 lines
926 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/nicegui-org/nicegui/v2/tauri-conf-schema.json",
|
|
"productName": "Bevy Tasks",
|
|
"version": "0.1.0",
|
|
"identifier": "com.bevytasks.app",
|
|
"build": {
|
|
"frontendDist": "../dist",
|
|
"devUrl": "http://localhost:1422",
|
|
"beforeDevCommand": "npm run dev",
|
|
"beforeBuildCommand": "npm run build"
|
|
},
|
|
"app": {
|
|
"withGlobalTauri": false,
|
|
"windows": [
|
|
{
|
|
"title": "Bevy Tasks",
|
|
"width": 400,
|
|
"height": 700,
|
|
"minWidth": 320,
|
|
"minHeight": 500,
|
|
"resizable": true,
|
|
"decorations": false,
|
|
"transparent": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
},
|
|
"plugins": {}
|
|
}
|