7 lines
192 B
TypeScript
7 lines
192 B
TypeScript
import { redirect } from "@sveltejs/kit";
|
|
import type { PageServerLoad } from "./$types";
|
|
|
|
export const load = (async (c) => {
|
|
throw redirect(302, "/dashboard");
|
|
}) satisfies PageServerLoad;
|