@astrojs/cloudflare
Version:
Deploy your site to Cloudflare Workers/Pages
16 lines (15 loc) • 335 B
JavaScript
const prerender = false;
const GET = (ctx) => {
const href = ctx.url.searchParams.get("href");
if (!href) {
return new Response("Missing 'href' query parameter", {
status: 400,
statusText: "Missing 'href' query parameter"
});
}
return fetch(new URL(href, ctx.url.origin));
};
export {
GET,
prerender
};