Home > database >  Bus error (core dumped) while starting a NextJs project
Bus error (core dumped) while starting a NextJs project

Time:11-29

I just finished creating a NextJs project and i ran npm run dev to start the project; but instead the terminal displays enter image description here I'm currently not sure what is causing this. Please i need help

CodePudding user response:

try and delete the project node modules and the lock file and redo npm install

CodePudding user response:

try to delete "_next" and "node_modules" folder with the package-lock.json file. then try npm install and npm run dev.

This worked for me

  • Related