webpack error in Cannot find module 'less'

后端 未结 8 1344
渐次进展
渐次进展 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条回答
  •  鱼传尺愫
    2021-02-03 22:10

    This error happens because npm@3 does not resolve peerDependencies any more.

    npm install less less-loader is the way to go.

提交回复
热议问题