webpack error in Cannot find module 'less'

后端 未结 8 1347
渐次进展
渐次进展 2021-02-03 21:30

I\'m trying to use less loader in webpack and the issues is - I\'ve installed less loader locally, but when I try to compile everything using webpack command in bask, it prints

8条回答
  •  闹比i
    闹比i (楼主)
    2021-02-03 22:17

    the error message described the problem well: missing 'less' module.

    npm install less --save-dev will solve it.

    Most of the time you should have all of less/less-loader/css-loader/style-loader.

    npm install style-loader css-loader less-loader less --save-dev

提交回复
热议问题