vigi/src-tauri/tauri.conf.json
2024-07-30 22:41:13 +03:00

63 lines
1.4 KiB
JSON

{
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
"devPath": "http://localhost:1420",
"distDir": "../build"
},
"package": {
"productName": "vigi",
"version": "1.0.0-pre0"
},
"tauri": {
"updater": {
"active": true,
"endpoints": [
"https://raw.githubusercontent.com/TxtDot/vigi/main/latest.json"
],
"dialog": true,
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEMzQTRGNjZDOTNENzEyREMKUldUY0V0ZVRiUGFrd3h5U0l3c3Z1aTVaNGJHZ3JtK2ZzeDZjeWt4bFF0RjhDT0ZPVjArbWVERGIK"
},
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
},
"window": {
"all": false,
"close": true,
"hide": true,
"show": true,
"maximize": true,
"minimize": true,
"unmaximize": true,
"unminimize": true,
"startDragging": true
}
},
"windows": [
{
"title": "vigi",
"width": 800,
"height": 600,
"decorations": false
}
],
"security": {
"csp": null
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "org.txtdot.vigi",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}
}