Reduce default window dimensions from 1120x760 to 940x640 pixels and disable resizing. Remove TunnelMetrics and RawTunnelMetrics types, formatDataSize and normalizeTunnelMetrics helpers, and all transfer statistics tracking from App component. Replace refreshTunnelMetrics with simpler refreshTunnelStatus that only queries tunnel active state. Remove received/sent data display cards from status panel and eliminate metrics
38 lines
714 B
JSON
38 lines
714 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": 940,
|
|
"height": 640,
|
|
"resizable": false,
|
|
"maximizable": false
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/icon.png",
|
|
"icons/icon.ico"
|
|
],
|
|
"resources": [
|
|
"bundled/**/*"
|
|
]
|
|
}
|
|
}
|