Portfolio/frontend/src/routes/(candidate)/[...path]/+page.ts
2022-12-23 22:51:25 +01:00

6 lines
163 B
TypeScript

import { redirect } from '@sveltejs/kit';
import type { PageLoad } from './$types';
export const load: PageLoad = () => {
throw redirect(302, '/auth/login');
};