botdevice/tauri.conf.json

43 lines
763 B
JSON
Raw Normal View History

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "BotDevice",
"version": "1.0.0",
"identifier": "br.com.pragmatismo.botdevice",
"build": {
"beforeDevCommand": "",
"beforeBuildCommand": "",
"frontendDist": "../botui/ui/suite"
},
"app": {
"security": {
"csp": null
},
"windows": [
{
"title": "BotDevice",
"fullscreen": true,
"resizable": false
}
]
},
"bundle": {
"active": true,
2025-12-23 15:52:06 -03:00
"targets": "all",
"icon": [
"icons/icon.png"
]
},
"plugins": {
"notification": {
"enabled": true
},
"http": {
"enabled": true,
"scope": ["https://**", "http://**"]
},
"geolocation": {
"enabled": true
}
}
}