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
{{ message }}
This repository has been archived by the owner on Feb 1, 2025. It is now read-only.
regenerator shouldn't change code of the form:
to
It seems to be a little more complex than just moving the return statement outside of the if statement. Even this code causes an error:
Generates this:
The problem is that this prevents optimizing out the if (false) require on the client-side (the require should only run on the server).
Related: vercel/next.js#9298
The text was updated successfully, but these errors were encountered: