npm ERR! missing script: build [How to Solve]

webpack-bundle-analyzer

Webpack visualization plug-in is used to check the total number of packages, the volume of each package and the situation inside the package
start viewing

npm run build --report

The result was an error npm ERR! Missing script: build, and then I found that the scripts the parameter in package.json was

"scripts": {
    "dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
    "build:prod": "cross-env NODE_ENV=production env_config=prod node build/build.js",
    "build:sit": "cross-env NODE_ENV=production env_config=sit node build/build.js",
    "lint": "eslint --ext .js,.vue src",
    "test": "npm run lint"
  },

So the right order should be

npm run build:prod --report

Visiting address: http://localhost:8888/

 

Similar Posts: