8 lines
225 B
TypeScript
8 lines
225 B
TypeScript
import type { PageLoad } from './$types';
|
|
import { redirect } from '@sveltejs/kit';
|
|
import { env } from '$env/dynamic/public';
|
|
|
|
export const load: PageLoad = async () => {
|
|
throw redirect(302, `${env.PUBLIC_BASE_PATH}/`);
|
|
};
|