toos-halloween/toos-dashboard/src-tauri/tauri.conf.json

53 lines
1023 B
JSON
Raw Normal View History

2023-10-04 13:53:57 +02:00
{
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": false
},
"package": {
"productName": "toos-dashboard",
"version": "0.0.0"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
2023-10-16 19:01:34 +02:00
},
"dialog": {
"all": true
2023-10-04 13:53:57 +02:00
}
},
"bundle": {
"active": true,
"targets": "all",
2023-10-24 22:29:06 +02:00
"identifier": "dev.xeovalyte.toosdashboard",
2023-10-04 13:53:57 +02:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
2023-10-27 10:34:47 +02:00
],
"resources": [
"assets/audio.mp3"
2023-10-04 13:53:57 +02:00
]
},
"security": {
"csp": null
},
"windows": [
{
"fullscreen": false,
"resizable": true,
2023-10-13 09:43:42 +02:00
"title": "Frankenstein Dashboard",
2023-10-04 13:53:57 +02:00
"width": 800,
"height": 600
}
]
}
}