Djeeberjr d764e9699b switched to svelte 5
front gets a bit to complex to do in vanilla
2025-05-16 18:59:19 +02:00

10 lines
173 B
TypeScript

import { mount } from "svelte"
import "./app.css"
import App from "./App.svelte"
const app = mount(App, {
target: document.getElementById('app')!,
})
export default app