import './style.css' import App from './App.svelte' import { initRouter } from './lib/router' // Initialize the router initRouter() // Mount the app const app = new App({ target: document.getElementById('app') }) export default app