react-app-rewire笔记

前端之家收集整理的这篇文章主要介绍了react-app-rewire笔记前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1、解决配置公共插件结合customize-cra

const { override,fixBabelImports,addDecoratorsLegacy } = require("customize-cra");
const rewireProvidePlugin = require("react-app-rewire-provide-plugin");

module.exports = function(config,env) {
config.plugins.push(
rewireProvidePlugin(config,env,{
"window.BMap": "BMap"
})
);
return Object.assign(
config,override(
/*启动装饰器 /
addDecoratorsLegacy(),/*配置antd /
fixBabelImports("import",{
libraryName: "antd",libraryDirectory: "es",style: "css"
})
)(config,env)
);
};


原文链接:https://www.f2er.com/note/411491.html

猜你在找的程序笔记相关文章