mirror of
https://github.com/danbulant/Portfolio
synced 2026-06-23 16:41:57 +00:00
6 lines
163 B
TypeScript
6 lines
163 B
TypeScript
import { redirect } from '@sveltejs/kit';
|
|
import type { PageLoad } from './$types';
|
|
|
|
export const load: PageLoad = () => {
|
|
throw redirect(302, '/auth/login');
|
|
};
|