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.
20 lines
336 B
JSON
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": [
|
|
]
|
|
}
|
|
}
|