scrcpy-mask/src-tauri/tauri.conf.json

36 lines
685 B
JSON
Raw Normal View History

2024-04-13 08:32:42 +08:00
{
"productName": "scrcpy-mask",
2024-05-14 10:15:20 +08:00
"version": "0.2.0",
2024-04-14 17:15:39 +08:00
"identifier": "com.akichase.mask",
2024-04-13 08:32:42 +08:00
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "scrcpy-mask",
"transparent": true,
"decorations": false
}
],
"macOSPrivateApi": true,
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
2024-04-15 08:29:39 +08:00
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
2024-05-06 13:10:52 +08:00
]
2024-04-13 08:32:42 +08:00
}
}