Update PROMPT.md

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-12-12 16:39:43 -03:00
parent d612ca0e9c
commit 5a20b23c00

View file

@ -212,29 +212,34 @@ use image; // Icon handling
## Tauri Configuration (tauri.conf.json) ## Tauri Configuration (tauri.conf.json)
Key settings: Key settings (Tauri v2 format):
```json ```json
{ {
"build": { "$schema": "https://schema.tauri.app/config/2",
"devPath": "ui",
"distDir": "ui"
},
"package": {
"productName": "General Bots", "productName": "General Bots",
"version": "6.1.0" "version": "6.1.0",
"identifier": "br.com.pragmatismo.botapp",
"build": {
"devUrl": "http://localhost:3000",
"frontendDist": "../botui/ui/suite"
}, },
"tauri": { "app": {
"allowlist": { "security": {
"all": false, "csp": null
"dialog": { "all": true },
"fs": { "all": true, "scope": ["$HOME/**"] }
}, },
"windows": [{ "windows": [{
"title": "General Bots", "title": "General Bots",
"width": 1200, "width": 1200,
"height": 800 "height": 800,
"resizable": true,
"fullscreen": false
}] }]
},
"bundle": {
"active": true,
"targets": "all",
"icon": []
} }
} }
``` ```