Home > Enterprise >  Why npm run dev stuck on APP_URL?
Why npm run dev stuck on APP_URL?

Time:07-08

Today when i tried to run npm run dev in Laravel 9 , it stucks at APP_URL line. Earlier there were no issues.enter image description here

CodePudding user response:

There is nothing wrong with your build. Laravel now uses Vite as front-end bundler. It is much more powerful than mix, so check out the documentation and get used to it. Or roll back to mix.

CodePudding user response:

Uninstall and reinstall the npm package.

Delete the node_modules folder. and then run the following command

npm install

Later

npm install -g require
  • Related