Mangades/src/routes/[manga]/favicon.svelte
2022-12-10 17:38:32 +01:00

11 lines
No EOL
307 B
Svelte

<script lang="ts">
import { imageproxy } from "$lib/util/request";
export var url: string;
var domain = (new URL(url)).hostname;
$: domain = (new URL(url)).hostname;
$: favicon = `https://www.google.com/s2/favicons?domain=${domain}`;
</script>
<img src="{imageproxy}{favicon}" alt="">