7 lines
170 B
TypeScript
7 lines
170 B
TypeScript
import { redirect } from '@sveltejs/kit';
|
|
import type { PageServerLoad } from './$types';
|
|
|
|
export const load: PageServerLoad = async () => {
|
|
redirect(302, '/dash');
|
|
};
|