MacOS styles

This commit is contained in:
2025-07-17 17:00:11 -07:00
parent ba9b9f1c27
commit f795e7d427
7 changed files with 102 additions and 1 deletions

View File

@@ -0,0 +1,40 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Berry Dash Manager",
"version": "1.0.0",
"identifier": "xyz.lncvrt.berrydash-manager",
"build": {
"beforeDevCommand": "yarn dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "yarn build",
"frontendDist": "../dist"
},
"app": {
"macOSPrivateApi": true,
"windows": [
{
"title": "Berry Dash Manager",
"width": 1000,
"height": 600,
"resizable": false,
"maximizable": false,
"titleBarStyle": "Overlay",
"hiddenTitle": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}