# ant-umi-research
**Repository Path**: yanxxit/ant-umi-research
## Basic Information
- **Project Name**: ant-umi-research
- **Description**: No description available
- **Primary Language**: TypeScript
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2025-10-15
- **Last Updated**: 2025-10-15
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# research
测试 1
## react 使用 FontAwesome 字图标库
- https://blog.csdn.net/CarinaYang/article/details/81663599
- https://www.cnblogs.com/luziluck/p/9377493.html
- http://www.fontawesome.com.cn/faicons/#accessibility
```html
```
## umi-serve
- https://www.npmjs.com/package/umi-serve Pro 默认提供了 mock 数据,但是在 build 之后 mock 数据将不再起作用。如果你仍想使用这些数据来搭建演示站点,你可以通过 umi-serve 来启动一个 express 服务。这个服务与 mock 的数据是相同的。
## component
Type: string 配置 location 和 path 匹配后用于渲染的 React 组件路径。可以是绝对路径,也可以是相对路径,如果是相对路径,会从 src/pages 开始找起。
如果指向 src 目录的文件,可以用 @,也可以用 ../。比如 component: '@/layouts/basic',或者 component: '../layouts/basic',推荐用前者。