aboutsummaryrefslogtreecommitdiffstats
path: root/src/routes/canary
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/canary')
-rw-r--r--src/routes/canary/+page.svelte7
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,
}),
);