template-desktop/src-tauri/tauri.conf.json

50 lines
998 B
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"
},
"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,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}