toos-halloween/toos-dashboard/src-tauri/tauri.conf.json
Xeovalyte f0558b0ac9
Some checks failed
publish / create-release (push) Successful in 13s
publish / build-tauri (ubuntu-latest) (push) Failing after 1m37s
publish / publish-release (push) Has been skipped
publish / build-tauri (windows-latest) (push) Has been cancelled
feat: Changed bundle indentifier
2023-10-24 22:29:06 +02:00

50 lines
966 B
JSON

{
"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
},
"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"
]
},
"security": {
"csp": null
},
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "Frankenstein Dashboard",
"width": 800,
"height": 600
}
]
}
}