next.js/test/integration/edge-runtime-streaming-error/pages/api/test.js
test.js16 lines265 B
export const config = {
  runtime: 'edge',
}

export default function () {
  return new Response(
    new ReadableStream({
      start(ctr) {
        ctr.enqueue(new TextEncoder().encode('hello'))
        ctr.enqueue(true)
        ctr.close()
      },
    })
  )
}
Quest for Codev2.0.0
/
SIGN IN