aboutsummaryrefslogtreecommitdiffstats
path: root/src/routes/canary/+page.svelte
blob: 2bb9142e10471de0927006713bce0560837087b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script lang="ts">
  import { goto } from '$app/navigation';
  import { base } from '$app/paths';
  import { onMount } from 'svelte';

  onMount(() =>
    goto(base + '/canaries/', {
      replaceState: true,
    }),
  );
</script>

<svelte:head>
  <meta http-equiv="refresh" content="0; url=/canaries/" />
</svelte:head>