Files
netrunner-app/src-tauri/tauri.conf.json
T
2026-04-28 12:23:52 +07:00

38 lines
954 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "netrunner_app",
"version": "0.1.0",
"identifier": "com.netrunner.vpn",
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
"devUrl": "http://192.168.110.169:1420",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "Netrunner VPN",
"width": 500,
"height": 800
}
],
"security": {
"csp": "default-src 'self' tauri: localhost; script-src 'self' 'wasm-unsafe-eval'; worker-src 'self' blob:; connect-src 'self' tauri: http://tauri.localhost; img-src 'self' data:; style-src 'self' 'unsafe-inline';"
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/64x64.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.png",
"icons/icon.ico",
"icons/icon.icns"
]
}
}