blob: 678e4cda7c0ecfc2f31951ff5e1743e496a92621 (
plain) (
blame)
1
2
3
4
5
6
|
import { redirect } from "@sveltejs/kit";
import { repository } from "$/../package.json" with { type: "json" };
export const GET = () => {
throw redirect(307, repository.url);
};
|