Add NexaVPN logo images (full logo and mark-only variants) to admin-web and desktop-client public directories. Add favicon.ico and favicon.png to admin-web, and icon.png to desktop-client. Update index.html files to reference favicon assets. Add icon.png and icon.ico to desktop-client Tauri icons directory and configure bundle.icon in tauri.conf.json. Update Layout component to display logo in sidebar brand-block with
37 lines
684 B
JSON
37 lines
684 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": [
|
|
"icons/icon.png",
|
|
"icons/icon.ico"
|
|
],
|
|
"resources": [
|
|
"bundled/**/*"
|
|
]
|
|
}
|
|
}
|