21 lines
335 B
Svelte
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>
|