This commit is contained in:
Christoph Brandau
2026-06-27 13:03:07 +02:00
commit 3b9d636fdb
25 changed files with 9890 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { mount } from "svelte";
import App from "./App.svelte";
import "./app.css";
const target = document.getElementById("app");
if (!target) {
throw new Error("App target element was not found.");
}
export default mount(App, { target });