update docs to Svelte 5

This commit is contained in:
Paweł Malinowski 2024-11-10 13:06:07 +01:00 committed by Eric Liu
commit c5f28033c2
4 changed files with 599 additions and 283 deletions

View file

@ -1,7 +1,8 @@
import App from "./App.svelte";
import { mount } from "svelte";
import "../../css/all.css";
import "./global.css";
const app = new App({ target: document.body });
const app = mount(App, { target: document.body });
export default app;