vestige/apps/dashboard/src/routes/+page.svelte

7 lines
162 B
Svelte
Raw Normal View History

<script lang="ts">
import { goto } from '$app/navigation';
import { onMount } from 'svelte';
onMount(() => goto('/graph', { replaceState: true }));
</script>