panorama/app/src-tauri/tauri.conf.json

54 lines
855 B
JSON
Raw Normal View History

2024-05-25 10:04:05 +00:00
{
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
"devPath": "http://localhost:1420",
"distDir": "../dist"
},
"package": {
"productName": "panorama",
2024-05-27 05:43:09 +00:00
"version": "0.1.0"
2024-05-25 10:04:05 +00:00
},
"tauri": {
"allowlist": {
"all": false,
2024-05-27 05:43:09 +00:00
"app": {
"all": true,
"hide": true,
"show": true
},
2024-05-25 10:04:05 +00:00
"shell": {
"all": false,
"open": true
},
"http": {
"all": false,
"request": true,
"scope": ["http://localhost:5195/*"]
}
},
"windows": [
{
"title": "panorama",
"width": 800,
"height": 600
}
],
"security": {
"csp": null
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "com.tauri.dev",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}
}