bd9595b 36f8d04 bd9595b
1
2
3
4
5
6
7
8
9
10
11
import { redirect } from '@sveltejs/kit'; import type { LayoutServerLoad } from './$types'; export const load: LayoutServerLoad = (event) => { if (event.locals.user) { throw redirect(303, '/'); } return {}; };