Files
eve-alpha/src-tauri/tauri.conf.json
Aodhan Collins 66749a5ce7 Initial commit
2025-10-06 00:33:04 +01:00

58 lines
1.3 KiB
JSON

{
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": false
},
"package": {
"productName": "EVE",
"version": "0.1.0"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
},
"window": {
"all": true,
"close": true,
"hide": true,
"show": true,
"maximize": true,
"minimize": true,
"unmaximize": true,
"unminimize": true,
"startDragging": true,
"setAlwaysOnTop": true
}
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "com.eve.assistant"
},
"security": {
"csp": null,
"devCsp": "default-src 'self' 'unsafe-inline' 'unsafe-eval' http://localhost:1420; connect-src 'self' ws://localhost:1420"
},
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "EVE - Personal Desktop Assistant",
"width": 1200,
"height": 800,
"minWidth": 800,
"minHeight": 600,
"decorations": true,
"alwaysOnTop": false,
"transparent": false
}
]
}
}