diff options
feat: /canary/ -> /canaries/
Diffstat (limited to 'src/routes/canary/+page.svelte')
-rw-r--r-- | src/routes/canary/+page.svelte | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/routes/canary/+page.svelte b/src/routes/canary/+page.svelte new file mode 100644 index 0000000..25c4f6c --- /dev/null +++ b/src/routes/canary/+page.svelte @@ -0,0 +1,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> |