KanBan/src-tauri/tauri.conf.json

45 lines
835 B
JSON
Raw Permalink Normal View History

2024-03-24 23:38:28 +00:00
{
"build": {
"beforeDevCommand": "bun run dev",
"beforeBuildCommand": "bun run build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": true
},
"package": {
2024-03-28 03:47:09 +00:00
"productName": "KlectrBan",
2024-03-24 23:38:28 +00:00
"version": "0.0.0"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
}
},
"windows": [
{
2024-03-28 03:47:09 +00:00
"title": "KlectrBan",
2024-03-24 23:38:28 +00:00
"width": 500,
"height": 500
}
],
"security": {
"csp": null
},
"bundle": {
"active": true,
"targets": "all",
2024-03-28 03:47:09 +00:00
"identifier": "com.klectrban.dev",
2024-03-24 23:38:28 +00:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}
}