2026-04-17 12:14:55 +03:00
|
|
|
/**
|
|
|
|
|
* Application entry point
|
|
|
|
|
*
|
|
|
|
|
* Mounts the main App component to the DOM and initializes
|
|
|
|
|
* global styles.
|
|
|
|
|
*/
|
2026-01-02 16:09:03 +03:00
|
|
|
import App from '$app/App.svelte';
|
2025-12-30 18:57:58 +03:00
|
|
|
import { mount } from 'svelte';
|
2026-01-02 16:09:03 +03:00
|
|
|
import '$app/styles/app.css';
|
2025-12-30 18:57:58 +03:00
|
|
|
|
|
|
|
|
mount(App, {
|
|
|
|
|
target: document.getElementById('app')!,
|
|
|
|
|
});
|