From 1b5b803b270aabfbb90a2c5eb71412638f5b4e45 Mon Sep 17 00:00:00 2001 From: jason Date: Sat, 7 Mar 2026 23:02:42 -0600 Subject: [PATCH] feat: add frontend main entry point --- frontend/src/main.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 frontend/src/main.ts diff --git a/frontend/src/main.ts b/frontend/src/main.ts new file mode 100644 index 0000000..c5fb20c --- /dev/null +++ b/frontend/src/main.ts @@ -0,0 +1,7 @@ +import App from './App.svelte'; + +const app = new App({ + target: document.getElementById('app')!, +}); + +export default app; \ No newline at end of file