mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2025-02-23 10:26:19 +00:00
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>
13 lines
375 B
TypeScript
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';
|