onyx-tasks/apps/tauri/src-tauri/tauri.conf.json
Tristan Michael 2a1866112c feat: add MSI to Windows bundle targets
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-03 03:48:21 -07:00

42 lines
1,002 B
JSON

{
"productName": "Onyx",
"version": "0.1.0",
"identifier": "com.onyx.app",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:1422",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"withGlobalTauri": false,
"windows": [
{
"title": "Onyx",
"width": 400,
"height": 700,
"minWidth": 320,
"minHeight": 500,
"resizable": true,
"decorations": false,
"transparent": true
}
],
"security": {
"csp": "default-src 'self'; style-src 'self' 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com; connect-src ipc: http://ipc.localhost; object-src 'none'; base-uri 'self'"
}
},
"bundle": {
"active": true,
"targets": ["appimage", "deb", "msi"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"plugins": {}
}