next.js/test/e2e/edge-pages-support/app/pages/api/hello.js
hello.js13 lines229 B
export const config = {
  runtime: 'edge',
}

export default async function handler(req) {
  return new Response(
    JSON.stringify({
      hello: 'world',
      query: Object.fromEntries(req.nextUrl.searchParams),
    })
  )
}
Quest for Codev2.0.0
/
SIGN IN