KRadio/src-tauri/tauri.conf.json

60 lines
1.1 KiB
JSON
Raw Normal View History

{
"build": {
"beforeDevCommand": "bun run dev",
"beforeBuildCommand": "bun run build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": true
},
"package": {
"productName": "KlectrRadio",
"version": "0.0.1"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
},
"window": {
"all": false
},
"fs": {
"all": false,
"readFile": true,
"writeFile": true,
"exists": true,
"scope": ["$APPDATA/*"]
},
"path": {
"all": true
}
},
"windows": [
{
"title": "KlectrRadio",
"width": 300,
"height": 600,
"decorations": false,
"resizable": false
}
],
"security": {
"csp": null
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "com.KlectrRadio.dev",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}
}