DEV Community

Discussion on: How to develop a fullstack Q&A app with Fauna and Next.js

Collapse
 
jiftuq profile image
chris

I get this when i try to run it
API resolved without sending a response for /api/createQuestion, this may result in stalled requests.

Thread Thread
 
amolo profile image
Amolo

I haven't received that error on my end. But you could try adding this at the end of the api/createQuestion file

export const config = {
    api:{
        externalResolver: true,
    },
}
Enter fullscreen mode Exit fullscreen mode