0
0
mirror of https://github.com/jellyfin/jellyfin-vue.git synced 2025-02-23 10:26:19 +00:00
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

13 lines
375 B
TypeScript

/**
* Every polyfilled feature must be in their own module.
*/
import '#/fullscreen.ts';
/**
* The Tauri-specific code must be loaded before the frontend code to ensure that
* all the polyfills for the runtime have been loaded
* before the frontend code is executed.
*
* THIS IMPORT ALWAYS NEEDS TO BE THE LAST IMPORT IN THIS FILE
*/
import '@jellyfin-vue/frontend';