diff options
| author | AAGaming <aa@mail.catvibers.me> | 2023-05-12 02:02:04 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-11 22:02:04 -0400 |
| commit | d99f332523c1e70df8ed1f0d024cc6dd77607433 (patch) | |
| tree | 3ef4eef72996abb2fc15dcfbee2ece3f6968dcfd /frontend/src/index.ts | |
| parent | 0c83c9a2b507567fd49803f1df3f7d9c013c971c (diff) | |
| download | decky-loader-d99f332523c1e70df8ed1f0d024cc6dd77607433.tar.gz decky-loader-d99f332523c1e70df8ed1f0d024cc6dd77607433.zip | |
Initial implementation of global DFL instance (#451)v2.9.0-pre1
Diffstat (limited to 'frontend/src/index.ts')
| -rw-r--r-- | frontend/src/index.ts | 6 |
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'); +})(); |
