jellyfin-vue/packaging/tauri/tauri.conf.json
Fernando Fernández 6da3ba71dd
Some checks are pending
Push & Release 🌍 / Automation 🎛️ (push) Waiting to run
Push & Release 🌍 / ${{ github.event_name == 'push' && 'Unstable 🚀⚠️' || 'Stable 🏷️✅' }} (push) Waiting to run
Push & Release 🌍 / GitHub CodeQL 🔬 (push) Waiting to run
Push & Release 🌍 / Deploy 🚀 (push) Blocked by required conditions
ci: cache rust, simplify artifact env vars
2024-10-12 15:21:37 +00:00

46 lines
910 B
JSON

{
"bundle": {
"active": true,
"targets": [
"appimage",
"msi",
"dmg"
],
"icon": [
"icons/**/*"
],
"resources": [],
"externalBin": [],
"category": "Entertainment",
"linux": {
"appimage": {
"bundleMediaFramework": true
}
}
},
"build": {
"beforeBuildCommand": "npm run build -w @jellyfin-vue/frontend",
"frontendDist": "../../frontend/dist",
"beforeDevCommand": "npm start -w @jellyfin-vue/frontend",
"devUrl": "http://127.0.0.1:3000"
},
"productName": "jellyfin-vue",
"version": "../../frontend/package.json",
"identifier": "org.jellyfin.vue.tauri",
"plugins": {},
"app": {
"security": {
"csp": null
},
"windows": [
{
"title": "Jellyfin Vue",
"width": 800,
"height": 600,
"resizable": true,
"fullscreen": false
}
]
}
}