github-actions[bot]
GitHub deploy: 143cf67e0503dd8cc322c2fa1efc9614cb5f8ae3
af1516d
raw
history blame contribute delete
230 Bytes
<script>
import { goto } from '$app/navigation';
import { onMount } from 'svelte';
import Settings from '$lib/components/admin/Settings.svelte';
onMount(() => {
goto('/admin/settings/general');
});
</script>
<Settings />