gbclient/src-rust/tauri.conf.json

43 lines
897 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "General Bots",
"version": "6.0.0",
"identifier": "online.generalbots",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"label": "main",
"title": "General Bots",
"width": 800,
"height": 600,
"resizable": true,
"fullscreen": false,
"visible": false,
"decorations": false,
"skipTaskbar": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}