8 lines
206 B
TypeScript
8 lines
206 B
TypeScript
|
|
import { redirect } from '@sveltejs/kit';
|
||
|
|
import type { PageServerLoad } from './$types';
|
||
|
|
|
||
|
|
export const load: PageServerLoad = async ({ locals }) => {
|
||
|
|
if (locals.user) redirect(302, '/');
|
||
|
|
return {};
|
||
|
|
};
|