Files
clawpanel/src-tauri/tauri.conf.json

51 lines
1.1 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/crates/tauri-config-schema/schema.json",
"productName": "ClawPanel",
"version": "0.9.2",
"identifier": "ai.openclaw.clawpanel",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:1420",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{
"title": "ClawPanel",
"width": 1100,
"height": 700,
"minWidth": 800,
"minHeight": 500,
"decorations": true,
"resizable": true
}
],
"withGlobalTauri": 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"
],
"windows": {
"webviewInstallMode": {
"type": "embedBootstrapper",
"silent": true
},
"nsis": {
"languages": ["SimpChinese", "English"],
"displayLanguageSelector": true
}
}
}
}