KRadio/src-tauri/tauri.conf.json

72 lines
1.5 KiB
JSON

{
"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,
"close": true,
"hide": true,
"show": true,
"maximize": true,
"minimize": true,
"unmaximize": true,
"unminimize": true,
"startDragging": true
},
"fs": {
"all": false,
"createDir": true,
"readFile": true,
"writeFile": true,
"exists": true,
"scope": ["$APPDATA/*", "$HOME/Library/Application Support/com.KlectrRadio.dev"]
},
"path": {
"all": true
}
},
"macOSPrivateApi": true,
"windows": [
{
"title": "KlectrRadio",
"width": 1200,
"height": 600,
"decorations": false,
"resizable": true,
"min-width": 800,
"min-height": 600
}
],
"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"
]
}
}
}