create-react-app设置全局less和模块less

官网链接:https://ant.design/docs/react/use-with-create-react-app-cn
将craco.config.js文件里的内容添加less模块配置就可以使用
const CracoLessPlugin = require('craco-less');

module.exports = {
plugins: [
{
plugin: CracoLessPlugin,
options: {
//添加cssLoaderOptions代表模块化,不添加代表全局
cssLoaderOptions:{
modules:{
localIdentName: "[local]_[hash:base64:5]",
}

},
lessLoaderOptions: {

lessO

create-react-app设置全局less和模块less最先出现在Python成神之路

版权声明:
作者:Alex
链接:https://www.techfm.club/p/5152.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>