blob: bf39df9a08265f4b35c9ba7ed5fccd261176c739 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { mount } from "svelte";
import App from "./App.svelte";
const target = document.getElementById("app");
if (!target)
throw new Error("missing #app target");
mount(App, { target });
|