更新 Tauri 配置,添加构建命令并修复安全策略

This commit is contained in:
2025-12-23 13:12:09 +08:00
parent 798df0dedd
commit 1ce41b66ea
2 changed files with 5 additions and 3 deletions

View File

@@ -7,7 +7,8 @@
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri dev"
"tauri": "tauri dev",
"tauri:build": "tauri build"
},
"dependencies": {
"react": "^19.2.3",

View File

@@ -6,19 +6,20 @@
"build": {
"beforeDevCommand": "",
"devUrl": "http://localhost:51515/root/light-code-center/",
"beforeBuildCommand": "bun run build",
"beforeBuildCommand": "",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"url": "http://localhost:51515/root/light-code-center/",
"title": "tauri-template",
"width": 800,
"height": 600
}
],
"security": {
"csp": null
"csp": "default-src 'self' http://localhost:51515 https://*.kevisual.cn; connect-src 'self' https://* wss://*"
}
},
"bundle": {