Fresh NextJS App throwing errors before any changes

I was experiencing the exact same issue as you described, and for what I’ve found, it seems to be due to a breaking change in [email protected] which is only affecting Windows.

Until this gets fixed, you can downgrade Next to version 11.1.0:

npm install [email protected]

yarn add [email protected]

Leave a Comment