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 });