Files
labelmain/src-tauri/tauri.conf.json
2026-02-03 18:05:47 +08:00

43 lines
834 B
JSON

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