change some defaults

This commit is contained in:
2025-04-22 13:43:33 +02:00
parent de3a4fb281
commit ac0977b84b
28 changed files with 1465 additions and 8922 deletions

View File

@ -1,10 +1,39 @@
{
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/tooling/cli/schema.json",
"$schema": "https://schema.tauri.app/config/2",
"productName": "gwaleen-desktop",
"version": "0.0.0",
"identifier": "com.gwaleen.desktop",
"build": {
"beforeDevCommand": "bun run front:dev",
"devUrl": "http://localhost:3000",
"beforeBuildCommand": "bun run front:build",
"frontendDist": "../dist",
"devUrl": "http://localhost:3000"
"frontendDist": "../dist"
},
"app": {
"security": {
"csp": null
},
"enableGTKAppId": true,
"macOSPrivateApi": true,
"windows": [
{
"title": "gwaleen-desktop",
"width": 100,
"height": 100,
"resizable": true,
"fullscreen": false,
"decorations": false,
"transparent": true,
"visible": true,
"alwaysOnTop": true,
"skipTaskbar": false,
"center": true,
"minimizable": true,
"maximizable": true,
"closable": true,
"titleBarStyle": "Visible"
}
]
},
"bundle": {
"active": true,
@ -16,23 +45,5 @@
"icons/icon.icns",
"icons/icon.ico"
]
},
"productName": "gwaleen-desktop",
"mainBinaryName": "gwaleen-desktop",
"version": "0.0.0",
"identifier": "com.gwaleen.desktop",
"plugins": {},
"app": {
"security": {
"csp": null
},
"windows": [
{
"title": "gwaleen-desktop",
"width": 800,
"height": 600,
"useHttpsScheme": true
}
]
}
}