gcs-user-interface/src-tauri/tauri.conf.json

47 lines
894 B
JSON
Raw Normal View History

2023-07-11 09:15:53 -07:00
{
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
2023-09-15 13:14:39 -07:00
"devPath": "http://localhost:4000",
2023-07-11 09:15:53 -07:00
"distDir": "../dist",
"withGlobalTauri": false
},
"package": {
"productName": "Interface",
"version": "0.0.0"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
}
},
"bundle": {
"active": true,
"targets": "all",
2024-02-16 12:18:08 -08:00
"identifier": "com.gcs-user-interface.app",
2023-07-11 09:15:53 -07:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"security": {
"csp": null
},
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "Interface",
"width": 800,
"height": 600
}
]
}
}