summaryrefslogtreecommitdiff
path: root/frontend/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/index.ts')
-rw-r--r--frontend/src/index.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/frontend/src/index.ts b/frontend/src/index.ts
new file mode 100644
index 00000000..6588cb5c
--- /dev/null
+++ b/frontend/src/index.ts
@@ -0,0 +1,6 @@
+// Sets up DFL, then loads start.ts which starts up the loader
+(async () => {
+ console.debug('Setting up decky-frontend-lib...');
+ window.DFL = await import('decky-frontend-lib');
+ await import('./start');
+})();