Files
website/app/src/routes/+error.svelte
2025-01-04 19:59:44 +03:00

9 lines
137 B
Svelte

<script>
import { onMount } from "svelte";
import { goto } from "$app/navigation";
onMount(() => {
goto("/");
});
</script>