Initial commit

This commit is contained in:
kevisual
2025-12-24 17:40:53 +08:00
commit 404fabcef9
42 changed files with 7192 additions and 0 deletions

36
src-tauri/tauri.conf.json Normal file
View File

@@ -0,0 +1,36 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "tauri-template",
"version": "0.1.0",
"identifier": "com.xiong.tauri-template",
"build": {
"beforeDevCommand": "",
"devUrl": "http://localhost:51515/root/light-code-center/",
"beforeBuildCommand": "",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"url": "http://localhost:51515/root/light-code-center/",
"title": "tauri-template",
"width": 800,
"height": 600
}
],
"security": {
"csp": "default-src 'self' http://localhost:51515 https://*.kevisual.cn; connect-src 'self' https://* wss://*"
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}