feat: 🎸 init

init the project
This commit is contained in:
2025-11-21 18:44:36 +08:00
commit a170c3593b
25 changed files with 6767 additions and 0 deletions

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

@@ -0,0 +1,32 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "tools",
"version": "0.1.0",
"identifier": "cn.kmux.tools",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "tools",
"width": 800,
"height": 600
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/icon.icns",
"icons/icon.ico"
]
}
}