panorama2/src-tauri/tauri.conf.json

38 lines
754 B
JSON
Raw Normal View History

2023-11-13 18:04:06 +00:00
{
2024-02-08 06:03:29 +00:00
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"app": {
2023-11-13 18:04:06 +00:00
"security": {
"csp": null
},
"windows": [
{
"fullscreen": false,
2024-02-08 06:03:29 +00:00
"height": 600,
2023-11-13 18:04:06 +00:00
"resizable": true,
"title": "panorama",
2024-02-08 06:03:29 +00:00
"width": 800
2023-11-13 18:04:06 +00:00
}
]
},
2024-02-08 06:03:29 +00:00
"build": {
"beforeBuildCommand": "npm run build",
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"frontendDist": "../dist"
},
"bundle": {
"active": true,
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"targets": "all"
},
"identifier": "com.tauri.dev",
"productName": "panorama",
"version": "0.1.0"
2023-11-13 18:04:06 +00:00
}