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

39 lines
729 B
JSON
Raw Normal View History

2024-04-13 08:32:42 +08:00
{
"productName": "scrcpy-mask",
"version": "0.0.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-04-13 09:53:41 +08:00
],
"resources":[
"resource/*"
2024-04-13 08:32:42 +08:00
]
}
}