feat(project): init

This commit is contained in:
2026-02-03 18:05:47 +08:00
commit f37a119eff
188 changed files with 29246 additions and 0 deletions

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

@@ -0,0 +1,42 @@
{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "webside",
"version": "0.1.0",
"identifier": "com.webside.dev",
"build": {
"frontendDist": "../out",
"devUrl": "http://localhost:5521",
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build:export-stage"
},
"app": {
"windows": [
{
"title": "webside",
"width": 800,
"height": 600,
"resizable": true,
"fullscreen": false
}
],
"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"
],
"linux": {
"deb": {
"depends": []
}
}
}
}