fix: Add redirect for /index.html
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
<script lang="ts">
|
||||
import { goto } from '$app/navigation';
|
||||
import { base } from '$app/paths';
|
||||
import { onMount } from 'svelte';
|
||||
|
||||
onMount(async () => {
|
||||
await goto(`${base}/edit`, {
|
||||
replaceState: true
|
||||
});
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user