- 需要安装[email protected]
- 需要babel-plugin-import
- 扩展react里面的webpack配置,新建config-overrides.js
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‘
原文地址:https://www.cnblogs.com/Xmforever/p/10322149.html
时间: 2024-10-11 20:01:08