Invalid options object. Less Loader has been initialized using an options object that does not ma...

Invalid options object. Less Loader has been initialized using an options object that does not ma..._第1张图片
解决方法:
1.把less-loader 降到 5.0.0 版本。

addLessLoader({
	javascriptEnabled: true,
	modifyVars: {'@primary-color': '#58BC58'}
})

2.如果 less-loader 版本为 6.0.0 以上:

addLessLoader({
	lessOptions: {
		javascriptEnabled: true,
		modifyVars: {'@primary-color': '#58BC58'}
	}
})

更多详见:

https://github.com/ant-design/ant-design/issues/23624

你可能感兴趣的:(笔记)