Error:To install them, you can run: npm install --save vue-style-loader css-loader……

Error:npm install --save vue-style-loader css-loader……

The error is as follows:
insert image description here

Solutions due to missing dependencies:

  • If it is normal, execute npm install stylus-loader css-loader style-loader
    --save-dev to install dependencies.
  • If it is less, execute npm install less less-loader --save-dev to install dependencies.
  • If it is sass, execute npm install sass sass-loader --save-dev to install dependencies.

Guess you like

Origin blog.csdn.net/m0_46374969/article/details/121718926