mirror of
https://github.com/danbulant/Mangades
synced 2026-07-09 21:10:45 +00:00
11 lines
No EOL
307 B
Svelte
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=""> |