import { mount } from 'svelte'; import App from './App.svelte'; function init() { mount(App, { target: document.body }); } document.addEventListener("DOMContentLoaded", init);