I\'m trying to run npm run dev for Laravel Mix and I get this error:
npm run dev
> @ dev D:\\projects\\ptcs > cross-env NODE_ENV=development webpack -
Delete the node_modules folder
node_modules
Then you should run the commands:
npm install --no-bin-links npm run dev
It's worked on my Laravel 5.5 and Windows.