botserver/tauri.conf.json
Rodrigo Rodriguez (Pragmatismo) b65e7cc88a feat: update webview URL and frontend dist path
Changed the default webview URL from 'tables.html' to 'index.html' in main.rs to reflect the new entry point. Updated the frontend distribution path in tauri.conf.json from './web/desktop' to './web/html' to better represent the directory structure. These changes align with recent frontend reorganization.
2025-11-14 17:04:51 -03:00

20 lines
336 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "General Bots",
"version": "6.0.8",
"identifier": "br.com.pragmatismo",
"build": {
"frontendDist": "./web/html"
},
"app": {
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
]
}
}