HuLa/src-tauri/tauri.conf.json

29 lines
512 B
JSON
Raw Normal View History

2023-12-15 20:25:35 +08:00
{
"productName": "HuLa",
"version": "2.1.0",
"identifier": "com.tauri.build",
2023-12-15 20:25:35 +08:00
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist",
"devUrl": "http://127.0.0.1:6130"
2023-12-15 20:25:35 +08:00
},
"bundle": {
"resources": [
"tray"
],
"active": true,
"icon": [],
"windows": {},
"macOS": {}
},
"app": {
"withGlobalTauri": true,
"windows": [],
"security": {
"csp": null
},
"macOSPrivateApi": true
2023-12-15 20:25:35 +08:00
}
}