`readBody` hangs

Hi, I have this code:

export default defineEventHandler(async (event) => {
  const body = await readBody(event)

  console.log("body: ", body)
  return true
})


Is there any reason why code execution would hang at the readBody line indefinitely?
Was this page helpful?