Files
TauriSolidjsTools/src-tauri/tauri.conf.json
zhilv a170c3593b feat: 🎸 init
init the project
2025-11-21 18:44:36 +08:00

33 lines
594 B
JSON

{
"$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"
]
}
}