chore(setup): migrate from SvelteKit to Svelte

This commit is contained in:
Ilia Mashkov
2025-12-30 18:57:58 +03:00
parent def01a2cad
commit f3315be32d
16 changed files with 79 additions and 187 deletions

6
src/main.ts Normal file
View File

@@ -0,0 +1,6 @@
import { mount } from 'svelte';
import App from './App.svelte';
mount(App, {
target: document.getElementById('app')!,
});