blob: f58cfe2dec9ee138ec7cdb72c5ea656072a207ac (
plain)
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 mount target");
}
export default mount(App, { target });
|