blob: 9ebef3aaf11a8ce7e409f61ec769884889574c40 (
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 });
|