0
0
mirror of https://github.com/jellyfin/jellyfin-vue.git synced 2025-04-03 18:45:15 +00:00
Files
jellyfin-vue/packaging/tauri/tauri.conf.json
Fernando Fernández 8e8cba9f32 feat(tauri): implement fullscreen toggle functionality (#2572)
Implements full window's fullscreen functionality inside @jellyfin-vue/tauri-runtime package

Signed-off-by: Fernando Fernández <ferferga@hotmail.com>
Co-authored-by: sean <sean.mcbroom@outlook.com>
2025-01-30 22:10:09 +01:00

52 lines
1.1 KiB
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/tauri-runtime",
"frontendDist": "../../packages/tauri-runtime/dist",
"beforeDevCommand": "npm start -w @jellyfin-vue/tauri-runtime",
"devUrl": "http://127.0.0.1:3000"
},
"productName": "jellyfin-vue",
"version": "../../frontend/package.json",
"identifier": "org.jellyfin.vue.tauri",
"plugins": {},
"app": {
"security": {
"csp": null,
"capabilities": [
{
"identifier": "all instances",
"description": "application capabilities for all instances",
"windows": ["*"],
"permissions": [
"core:window:allow-set-fullscreen"
]
}
]
},
"windows": [
{
"title": "Jellyfin Vue"
}
]
}
}