toos-halloween/toos-dashboard/src-tauri/tauri.conf.json
Xeovalyte 3f6ea3a2f1
All checks were successful
publish / publish-tauri (ubuntu-20.04) (push) Successful in 4m29s
Changed localhost to 127.0.0.1
2023-10-27 15:11:20 +02:00

53 lines
1023 B
JSON

{
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"devPath": "http://127.0.0.1:1420",
"distDir": "../dist",
"withGlobalTauri": false
},
"package": {
"productName": "toos-dashboard",
"version": "0.0.0"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
},
"dialog": {
"all": true
}
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "dev.xeovalyte.toosdashboard",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [
"assets/audio.mp3"
]
},
"security": {
"csp": null
},
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "Frankenstein Dashboard",
"width": 800,
"height": 600
}
]
}
}