antd中按需加载使用react-app-rewired报错
运行yarn start 报错injectBabelPlugin is not a function
代码和antd官网一样
原因是react-scripts 升级到 2.1.2 以后破坏了 react-app-rewired
解决方法,对react-scripts进行降级处理
yarn add react-app-rewired@2.0.2-next.0
运行yarn start 报错injectBabelPlugin is not a function
代码和antd官网一样
原因是react-scripts 升级到 2.1.2 以后破坏了 react-app-rewired
解决方法,对react-scripts进行降级处理
yarn add react-app-rewired@2.0.2-next.0