No form is detected - no submissions are shown

@netli The route that the form is posted to must be a static file route, not a route handled by Next.js.

The easiest way to do this is to:

  1. Have a static html version of the form so it gets detected easily by Netlify
  2. Post your form with ajax, to the same url as that static html form
  3. Handle the success message / redirect after submission

See this new information Netlify created to try and explain it:

1 Like