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