8 lines
162 B
TypeScript
8 lines
162 B
TypeScript
import type { PageLoad } from './$types';
|
|
import { goto } from '$app/navigation';
|
|
|
|
export const load = (async () => {
|
|
goto('/');
|
|
return;
|
|
}) satisfies PageLoad;
|