mirror of
https://github.com/qingchencloud/clawpanel.git
synced 2026-05-11 18:10:41 +08:00
修复: - nvm 用户 Node.js/CLI 检测失败(扫描 nvm 版本目录) - Tauri v2 参数名 snake_case → camelCase 不匹配 - Windows CLI 检测遗漏(增加 PATH 兜底) - Agent/记忆文件页面晦涩 os error 2 → 中文提示 - cargo fmt + clippy 修复 新增: - 初始设置自动创建配置文件 + 一键初始化按钮 - ClawPanel Web 版部署文档 + 文档中心
41 lines
895 B
JSON
41 lines
895 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/crates/tauri-config-schema/schema.json",
|
|
"productName": "ClawPanel",
|
|
"version": "0.4.5",
|
|
"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"
|
|
]
|
|
}
|
|
}
|