blob: 25c4f6c8351d633374a23f79ca3c23121baab0d5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<script lang="ts">
import { goto } from "$app/navigation";
import { onMount } from "svelte";
onMount(() =>
goto("/canaries/", {
replaceState: true,
}),
);
</script>
<svelte:head>
<meta http-equiv="refresh" content="0; url=/canaries/" />
</svelte:head>
|