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