Expand README with desktop platform requirements (Windows x86, macOS ARM), helper build commands, gateway utility scripts, and updated local test flow. Add realistic MVP usage section clarifying current platform build status, gateway configuration needs, and admin debug profile behavior with client private key handling.
34 lines
632 B
JSON
34 lines
632 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "NexaVPN",
|
|
"version": "0.1.0",
|
|
"identifier": "com.nexavpn.desktop",
|
|
"build": {
|
|
"beforeDevCommand": "npm run dev",
|
|
"beforeBuildCommand": "npm run build",
|
|
"devUrl": "http://localhost:4173",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "NexaVPN",
|
|
"width": 1120,
|
|
"height": 760,
|
|
"resizable": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [],
|
|
"resources": [
|
|
"bundled/**/*"
|
|
]
|
|
}
|
|
}
|