my_gradio / js /_website /src /routes /+layout.server.ts
xray918's picture
Upload folder using huggingface_hub
0ad74ed verified
raw
history blame contribute delete
275 Bytes
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]);
}
}