UNPKG

astro

Version:

Astro is a modern site builder with web best practices, performance, and DX front-of-mind.

16 lines (15 loc) 322 B
const RedirectComponentInstance = { default() { return new Response(null, { status: 301 }); } }; const RedirectSinglePageBuiltModule = { page: () => Promise.resolve(RedirectComponentInstance), onRequest: (_, next) => next() }; export { RedirectComponentInstance, RedirectSinglePageBuiltModule };