fix favicon not working

This commit is contained in:
maxDorninger
2025-06-29 23:35:59 +02:00
parent 44b9137b64
commit ff0a410d2c

View File

@@ -1,11 +1,17 @@
<script lang="ts">
import '../app.css';
import { ModeWatcher } from 'mode-watcher';
import { Toaster } from '$lib/components/ui/sonner/index.js';
import '../app.css';
import {ModeWatcher} from 'mode-watcher';
import {Toaster} from '$lib/components/ui/sonner/index.js';
let { children } = $props();
let {children} = $props();
</script>
<ModeWatcher />
<Toaster />
<svelte:head>
<title>MediaManager</title>
<meta content="Smart PVR for movies and TV shows" name="description"/>
<link href="/favicon.ico" rel="icon" type="ico"/>
</svelte:head>
<ModeWatcher/>
<Toaster/>
{@render children()}