coyotte508's picture
coyotte508 HF staff
✨ Add account page
36f8d04
raw
history blame
No virus
217 Bytes
import { redirect } from '@sveltejs/kit';
import type { LayoutServerLoad } from './$types';
export const load: LayoutServerLoad = (event) => {
if (event.locals.user) {
throw redirect(303, '/');
}
return {};
};