File size: 275 Bytes
0ad74ed |
1 2 3 4 5 6 7 8 9 10 11 |
import { redirect } from "@sveltejs/kit";
import { redirects } from "./redirects.js";
export const prerender = true;
export async function load({ url }: any) {
if (url.pathname in redirects) {
throw redirect(308, redirects[url.pathname as keyof typeof redirects]);
}
}
|