Files
frontend-svelte/src/main.ts

14 lines
276 B
TypeScript
Raw Normal View History

/**
* Application entry point
*
* Mounts the main App component to the DOM and initializes
* global styles.
*/
import App from '$app/App.svelte';
import { mount } from 'svelte';
import '$app/styles/app.css';
mount(App, {
target: document.getElementById('app')!,
});