blob: f7cab1221cb291590bd3a6829fa87b4386295f4d (
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);
};
|