Files
bilibili-video-downloader/src-tauri/tauri.conf.json
2026-03-19 04:02:10 +08:00

49 lines
992 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "bilibili-video-downloader",
"version": "0.2.0",
"identifier": "com.lanyeeee.bilibili-video-downloader",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:5005",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": [
"nsis",
"app",
"dmg",
"deb",
"rpm"
],
"licenseFile": "../LICENSE",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"externalBin": [
"ffmpeg/com.lanyeeee.bilibili-video-downloader-ffmpeg"
],
"windows": {
"nsis": {
"installMode": "perMachine",
"languages": [
"SimpChinese"
]
}
},
"macOS": {
"signingIdentity": "-"
}
}
}