mirror of
https://gitee.com/HuLaSpark/HuLa.git
synced 2024-11-29 18:28:30 +08:00
93770c1012
升级核心依赖版本 使用unocss前缀组插件简化写法
100 lines
1.9 KiB
JSON
100 lines
1.9 KiB
JSON
{
|
|
"build": {
|
|
"beforeDevCommand": "pnpm dev",
|
|
"beforeBuildCommand": "pnpm build",
|
|
"devPath": "http://localhost:6130",
|
|
"distDir": "../dist",
|
|
"withGlobalTauri": true
|
|
},
|
|
"package": {
|
|
"productName": "HuLa",
|
|
"version": "1.5.0"
|
|
},
|
|
"tauri": {
|
|
"updater": {
|
|
"windows": {
|
|
"installMode": "basicUi"
|
|
}
|
|
},
|
|
"allowlist": {
|
|
"all": false,
|
|
"notification": {
|
|
"all": true
|
|
},
|
|
"os": {
|
|
"all": true
|
|
},
|
|
"process": {
|
|
"all": true
|
|
},
|
|
"shell": {
|
|
"all": false,
|
|
"open": true
|
|
},
|
|
"http": {
|
|
"scope": ["http://**", "https://**"]
|
|
},
|
|
"fs": {
|
|
"all": true,
|
|
"scope": ["*/**"]
|
|
},
|
|
"window": {
|
|
"all": true
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"resources": ["tray"],
|
|
"targets": "all",
|
|
"identifier": "com.tauri.build",
|
|
"windows": {
|
|
"wix": {
|
|
"language": "zh-CN"
|
|
}
|
|
},
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
},
|
|
"security": {
|
|
"csp": null
|
|
},
|
|
"macOSPrivateApi": true,
|
|
"windows": [
|
|
{
|
|
"title": "登录",
|
|
"label": "login",
|
|
"url": "/login",
|
|
"fullscreen": false,
|
|
"resizable": false,
|
|
"center": true,
|
|
"width": 320,
|
|
"height": 448,
|
|
"skipTaskbar": false,
|
|
"decorations": false,
|
|
"transparent": true
|
|
},
|
|
{
|
|
"label": "tray",
|
|
"url": "/tray",
|
|
"resizable": false,
|
|
"center": false,
|
|
"visible": false,
|
|
"width": 130,
|
|
"height": 44,
|
|
"alwaysOnTop": true,
|
|
"skipTaskbar": true,
|
|
"decorations": false
|
|
}
|
|
],
|
|
"systemTray": {
|
|
"iconPath": "icons/icon.ico",
|
|
"iconAsTemplate": true
|
|
}
|
|
}
|
|
}
|