summaryrefslogtreecommitdiff
path: root/frontend/src/index.ts
blob: 6588cb5c101b6631e26a4973be18f53e7869259f (plain)
1
2
3
4
5
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');
})();