Metronic Laravel error - Cannot find module 'del' - solution
Error: Cannot find module "del" <img src=" alt="image" border="0">
In the recent latest of Metronic Laravel, the above error will appear when running
npm run dev command.In the recent node modules plugin, the
del plugin has been excluded from the default. We have to add it manually.The solution:
Run the below command, then proceed with the rest of the steps.
npm install --save-dev del For more information, please check https://preview.keenthemes.com/metronic8/laravel/documentation/getting-started/build
Thanks