diff options
feat: new canary, move to /~mem/ on estrogen.zone
Diffstat (limited to 'src/routes/canary/+page.svelte')
-rw-r--r-- | src/routes/canary/+page.svelte | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/routes/canary/+page.svelte b/src/routes/canary/+page.svelte index 25c4f6c..2bb9142 100644 --- a/src/routes/canary/+page.svelte +++ b/src/routes/canary/+page.svelte @@ -1,9 +1,10 @@ <script lang="ts"> - import { goto } from "$app/navigation"; - import { onMount } from "svelte"; + import { goto } from '$app/navigation'; + import { base } from '$app/paths'; + import { onMount } from 'svelte'; onMount(() => - goto("/canaries/", { + goto(base + '/canaries/', { replaceState: true, }), ); |