Redirect to new site

This commit is contained in:
Shav Kinderlehrer 2024-05-21 02:42:06 -04:00
parent 554505e216
commit 3b0e352c8e

View File

@ -0,0 +1,7 @@
import { redirect } from '@sveltejs/kit';
import type { LayoutServerLoad } from './$types';
export const load: LayoutServerLoad = ({ url }) => {
let path = url.pathname;
throw redirect(301, `https://frog.ski${url.pathname}`);
};