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

32 lines
575 B
JSON
Raw Normal View History

2024-04-13 08:32:42 +08:00
{
"productName": "scrcpy-mask",
"version": "0.0.0",
"identifier": "com.tauri.dev",
"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": [
"icons/32x32.png"
]
}
}