Netlify Form Submission Not Working

There’s a new example on how to use forms (and other things) with Next.js App Router - see live demo which also explains the solution. The source for the form is here.
The idea is:

  1. The form definition is in a static file - this is only used for Netlify detecting the forms on deploy
  2. The form itself has an onSubmit handler in code rather than an action - the handler makes a fetch request to submit the form.
1 Like