14 lines
276 B
TypeScript
14 lines
276 B
TypeScript
/**
|
|
* 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')!,
|
|
});
|