Skip to main content

Posts

Showing posts from September, 2020

npm run watch error in laravel 8

 When you try scaffolding or for any js compiling reason you would have tried npm install and npm run watch at any point of time in laravel. well, now i have seen that i am getting error while trying npm run watch to compile the mix file.  solution to that is simply run :  npm run development -- --watch It will do the same as npm run watch. it will compile all the asset files as before.