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

17
src/App.svelte Normal file
View File

@@ -0,0 +1,17 @@
<script lang="ts">
import './app.css';
import Page from './routes/Page.svelte';
</script>
<svelte:head> </svelte:head>
<div id="app-root">
<Page />
</div>
<style>
#app-root {
width: 100%;
height: 100vh;
}
</style>