feat(desktop): add tauri desktop client for cs.workyai.cn

This commit is contained in:
2026-02-18 16:53:22 +08:00
parent 3ea17db971
commit e343f6ac2a
38 changed files with 9327 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "wanwan-cloud-desktop",
"version": "0.1.0",
"identifier": "cn.workyai.wanwancloud.desktop",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "Wanwan Cloud Desktop",
"width": 1360,
"height": 860,
"minWidth": 1120,
"minHeight": 720
}
],
"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"
]
}
}