mirror of
https://github.com/open-webui/open-webui
synced 2024-11-08 09:39:55 +00:00
14 lines
192 B
Svelte
14 lines
192 B
Svelte
|
<script>
|
||
|
import { Toaster } from 'svelte-french-toast';
|
||
|
|
||
|
import '../app.css';
|
||
|
import '../tailwind.css';
|
||
|
</script>
|
||
|
|
||
|
<svelte:head>
|
||
|
<title>Ollama</title>
|
||
|
</svelte:head>
|
||
|
|
||
|
<slot />
|
||
|
<Toaster />
|