[Solved] could not run laravel de vue


node_modules\webpack\bin\webpack.js ENOENT at notFoundError

it seems that you haven’t install webpack.

since you are using laravel, you should have a package.json file usually it comes with laravel-mix which will install webpack. run npm install to install node modules.

if you just want to install webpack

run npm install webpack --save.

solved could not run laravel de vue