We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b822e9 commit c483ef1Copy full SHA for c483ef1
src/routes/no/+page.svelte
@@ -2,6 +2,7 @@
2
<script lang="ts">
3
import { goto } from "$app/navigation";
4
import { config } from "../../config";
5
+ import { base } from "$app/paths";
6
7
let containerRef: HTMLDivElement;
8
let noButtonRef: HTMLButtonElement;
@@ -20,7 +21,7 @@
20
21
}
22
23
function handleYes() {
- goto("/yes");
24
+ goto(`${base}/yes`);
25
26
</script>
27
0 commit comments