You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Execute prerender command for a site that throws an error in a used prerender hook, followed by another command e.g. npm run prerender && echo 'hi'
Observe that after the error is thrown and the prerender process fails, the second command is executed.
Expected Results:
Any error encountered during prerender should immediately exit the process via process.exit(1) to prevent operations downstream (e.g. deploying a broken site).
The text was updated successfully, but these errors were encountered:
Reproduction Steps:
npm run prerender && echo 'hi'
Expected Results:
Any error encountered during prerender should immediately exit the process via
process.exit(1)
to prevent operations downstream (e.g. deploying a broken site).The text was updated successfully, but these errors were encountered: