Express Form working in development but not in deployment. I checked all the support guides but nothing is working

What error? Where?

Are you aware that you can’t just run an Express server on Netlify?

If that’s what you’re doing, it’d explain why you’re seeing a 404 as there is no server to handle your request.

You’ll need to ensure that the script that catches and handles your form submission is created as a Serverless Function.

1 Like