const {injectBabelPlugin} = require(‘react-app-rewired‘);
module.exports = function override(config, env){
config = injectBabelPlugin([
‘import‘, {libraryName: ‘antd‘, libraryDirectory: ‘es‘, style: ‘css‘}
], config);
return config
}
// 以React按需加载antd-design为例
// 这样即可在其他JS直接import { Button } from ‘antd‘
React 不暴露webpack配置的情况下,修改webpack配置
原文:https://www.cnblogs.com/Xmforever/p/10322149.html