Files
bili-shadowreplay/src-tauri/tauri.conf.json
2024-09-09 02:46:42 +08:00

82 lines
1.5 KiB
JSON

{
"build": {
"beforeDevCommand": "yarn dev",
"beforeBuildCommand": "yarn build",
"devPath": "http://localhost:8054",
"distDir": "../dist",
"withGlobalTauri": false
},
"package": {
"productName": "bili-shadowreplay",
"version": "0.1.0"
},
"tauri": {
"systemTray": {
"iconPath": "icons/icon.png",
"iconAsTemplate": true
},
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
},
"http": {
"all": true,
"request": true,
"scope": [
"https://**",
"http://**"
]
},
"dialog": {
"all": true,
"open": true,
"save": true
},
"protocol": {
"all": false,
"asset": true,
"assetScope": [
"**"
]
},
"fs": {
"all": true,
"scope": [
"**"
]
}
},
"bundle": {
"active": true,
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "cn.vjoi.bilishadowreplay",
"targets": "all"
},
"security": {
"csp": null
},
"updater": {
"active": false
},
"windows": [
{
"label": "main",
"fullscreen": false,
"resizable": true,
"title": "BiliBili ShadowReplay",
"width": 800,
"height": 600,
"theme": "Dark"
}
]
}
}