9 lines
203 B
TypeScript
9 lines
203 B
TypeScript
import { redirect } from '@sveltejs/kit';
|
|
|
|
/** @type {import('./$types').LayoutServerLoad} */
|
|
export function load({ route }) {
|
|
if (route.id === '/') {
|
|
throw redirect(307, '/examples/overview');
|
|
}
|
|
}
|