blob: 2b9219b543b98a8cc6985b7401c2f342b37acd0d (
plain) (
blame)
1
2
3
4
5
6
7
|
export const GET = ({ url }) =>
Response.redirect(
`https://due.moe/tools?tool=birthdays${
url.searchParams.values.length > 0 ? `&${url.searchParams.toString()}` : ''
}`,
301
);
|