7 lines
190 B
TypeScript
7 lines
190 B
TypeScript
import { redirect } from "@sveltejs/kit";
|
|
import type { PageServerLoad } from "./$types";
|
|
|
|
export const load: PageServerLoad = ({ }) => {
|
|
redirect(308, "/calculator/configurations");
|
|
};
|