Answers for "Error: Cannot find module 'webpack-cli/package.json' Require stack:"

0

Error: Cannot find module 'webpack-cli/package.json'

npm i -g webpack-cli
Posted by: Guest on July-13-2021
4

webpack-cli/bin/config-yargs

NPM package.json scripts are a convenient and useful means to run locally installed binaries without having to be concerned about their full paths. Simply define a script as such:

+ For webpack-cli 3.x:
+
"scripts": {
  "start:dev": "webpack-dev-server"
}

+ For webpack-cli 4.x:
+
+ "scripts": {
+  "start:dev": "webpack serve"
+}

And run the following in your terminal/console:
Posted by: Guest on December-10-2020

Code answers related to "Error: Cannot find module 'webpack-cli/package.json' Require stack:"

Code answers related to "Javascript"

Browse Popular Code Answers by Language