`readBody` hangs

Hi, I have this code:
export default defineEventHandler(async (event) => {
const body = await readBody(event)

console.log("body: ", body)
return true
})
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?
2 Replies
Ryan The Temp
Ryan The TempOP9mo ago
I only seem to have this issue with latest nuxt 3.12.13
manniL
manniL9mo ago
double check with nitro. shouldn'T be related to nuxt

Did you find this page helpful?