Files
ProxyWarden/src-tauri/tauri.conf.json
T
dokril efda8eb98f
CI / Windows baseline (push) Canceled after 0s
Release v2.0.0
2026-09-10 20:59:52 +03:00

53 lines
1.3 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "ProxyWarden",
"version": "2.0.0",
"identifier": "ru.dokops.proxywarden.windows",
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"devUrl": "http://127.0.0.1:5173",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "ProxyWarden",
"width": 920,
"height": 760,
"minWidth": 760,
"maxWidth": 1200,
"minHeight": 560,
"resizable": true
}
],
"security": {
"csp": "default-src 'self'; connect-src 'self' ipc: http://ipc.localhost; img-src 'self' asset: http://asset.localhost data:; style-src 'self' 'unsafe-inline'; font-src 'self' data:; script-src 'self'"
}
},
"bundle": {
"active": true,
"targets": "nsis",
"resources": [
"bundled/components"
],
"windows": {
"webviewInstallMode": {
"type": "offlineInstaller",
"silent": true
},
"nsis": {
"installMode": "perMachine",
"installerHooks": "bundled/installer-hooks/proxywarden-hooks.nsh",
"template": "bundled/installer-hooks/installer-template.nsi"
}
},
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.ico"
]
}
}