Files
bili-shadowreplay/src-tauri/tauri.conf.json
2025-07-27 19:51:58 +08:00

43 lines
819 B
JSON

{
"build": {
"beforeDevCommand": "yarn dev",
"beforeBuildCommand": "yarn build",
"frontendDist": "../dist",
"devUrl": "http://localhost:8054"
},
"bundle": {
"active": true,
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"targets": "all"
},
"productName": "bili-shadowreplay",
"version": "../package.json",
"identifier": "cn.vjoi.bilishadowreplay",
"plugins": {
"sql": {
"preload": ["sqlite:data_v2.db"]
},
"deep-link": {
"desktop": {
"schemes": ["bsr"]
}
}
},
"app": {
"withGlobalTauri": false,
"security": {
"assetProtocol": {
"scope": ["**"],
"enable": true
},
"csp": null
}
}
}