Files
Gitpub-Desktop/src-tauri/tauri.conf.json
T
andrew b408067cd9 Add macOS .icns icon and update config
Add frontend/assets/icons/GitpubDesktop.icns and update src-tauri/tauri.conf.json to reference the new ICNS path so the macOS build uses the provided icon. Also change package.json name from "gitpub-desktop" to "Gitpub Desktop" (display/casing) for consistency.
2026-05-18 11:45:59 +12:00

39 lines
834 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "gitpub-desktop",
"version": "0.1.0",
"identifier": "com.andrewzambazos.gitpub-desktop",
"build": {
"frontendDist": "../frontend"
},
"app": {
"withGlobalTauri": true,
"macOSPrivateApi": true,
"windows": [
{
"title": "Gitpub Desktop",
"width": 1320,
"height": 860,
"minWidth": 1024,
"minHeight": 680,
"decorations": false,
"transparent": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"../frontend/assets/icons/GitpubDesktop.icns",
"../frontend/assets/icons/GitpubDesktop-Icon.ico"
]
}
}