rsnext/errors/static-page-generation-timeout.md
Sora Morimoto 0840793abf
Fix all 404 links (#51209)
I found some 404 links in jsdoc, so I used ripgrep to find and fix all the broken links to fix all the other links in this PR.
2023-06-13 14:25:40 +00:00

952 B

Static page generation timed out after multiple attempts

Why This Error Occurred

Next.js tries to restart the worker pool of the static page generation when no progress happens for a while, to avoid hanging builds.

When restarted it will retry all uncompleted jobs, but if a job was unsuccessfully attempted multiple times, this will lead to an error.

Possible Ways to Fix It

  • Make sure that there is no infinite loop during execution.
  • Make sure all Promises in getStaticPaths/getStaticProps resolve or reject correctly.
  • Avoid very long timeouts for network requests.
  • Increase the timeout by changing the staticPageGenerationTimeout configuration option (default 60 in seconds).