使用 Eject 方式在 create-react-app 中使用 Ant Design of React

Ant Design 官网对 如何 react-app-rewired 的方式进行按需加载进行了说明,详见 在 create-react-app 中使用 一文,文中有这样一段话

你也可以使用 create-react-app 提供的 yarn run eject 命令将所有内建的配置暴露出来。不过这种配置方式需要你自行探索,不在本文讨论范围内。

本文主要就Eject方式进行探索

使用create-react-app创建项目

参考:如何扩展 Create React App 的 Webpack 配置 的Eject方式

首先使用create-react-app创建一个项目

1
$ create-react-app antd-test

创建完项目后,进入项目目录,执行 yarn run eject 或 npm run eject

1
$ npm run eject

执行后会出现提示,该操作不可逆,选择y继续

成功eject后会暴露webpack的配置,package.json增加了很多的依赖

安装antd

使用 cnpm 安装 antd

1
$ cnpm install antd

修改src/App.js ,引入 antd 的按钮组件。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React, { Component } from 'react';
import Button from 'antd/lib/button';
import './App.css';

class App extends Component {
render() {
return (
<div className="App">
<Button type="primary">Button</Button>
</div>
);
}
}

export default App;

执行npm install 安装依赖,并启动项目

1
2
$ cnpm install
$ npm start

启动之后发现button并没有样式,需要引入antd的css文件

修改 src/App.css,在文件顶部引入 antd/dist/antd.css

1
2
3
4
5
6
7
@import '~antd/dist/antd.css';

.App {
text-align: center;
}

...

使用 babel-plugin-import 按需引入 antd 样式

在文件顶部引入 antd/dist/antd.css实际上加载了全部的 antd 组件的样式(对前端性能是个隐患)。
babel-plugin-import 是一个用于按需加载组件代码和样式的 babel 插件(原理

1
$ cnpm install babel-plugin-import --save-dev

修改src/App.js

1
2
3
4
...
- import Button from 'antd/lib/button';
+ import { Button } from 'antd';
...

然后移除前面在 src/App.css 里全量添加的 @import '~antd/dist/antd.css';

此时发现按钮样式不生效了,最简单的方式是修改package.json文件里的babel配置, 增加babel-plugin-import的配置

1
2
3
4
5
6
7
8
9
10
11
...
"babel": {
"presets": [
"react-app"
- ]
+ ],
+ "plugins": [
+ ["import", { "libraryName": "antd", "libraryDirectory": "es", "style": "css" }]
+ ]
}
...

重新执行npm start,样式重新生效

至此使用Eject方式按需引入antd的方式已经探索完毕。

使用 Eject 方式在 create-react-app 中使用 Ant Design of React

https://ivocin.github.io/2018/07/29/create_react_app_antd_eject/

作者

清秋

发布于

2018-07-29

更新于

2021-03-13

许可协议

评论