Files
frontend-svelte/src/App.svelte
Ilia Mashkov d5527929f9
Some checks failed
Build / build (pull_request) Failing after 16s
Lint / Lint Code (pull_request) Failing after 3s
Test / Svelte Checks (pull_request) Failing after 1s
fix: setup declarations for files to avoid import errors
2025-12-30 19:38:20 +03:00

21 lines
335 B
Svelte

<script lang="ts">
import favicon from '$lib/assets/favicon.svg';
import './app.css';
import Page from './routes/Page.svelte';
</script>
<svelte:head>
<link rel="icon" href={favicon} />
</svelte:head>
<div id="app-root">
<Page />
</div>
<style>
#app-root {
width: 100%;
height: 100vh;
}
</style>