blob: e9c8c8d2a7bc18bc5bf07c62c6e26980f624d583 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import root from '$lib/Utility/root.js';
export const GET = ({ url }) =>
Response.redirect(
root(
`/tools/wrapped${
url.searchParams.toString().length > 0 ? `&${url.searchParams.toString()}` : ''
}`
),
307
);
|