umijs 修改默认配置_umi 插件配置
时间: 2023-07-26 17:06:21 浏览: 268
要修改 umijs 的默认配置,可以使用插件配置。在 umijs 中,我们可以在 `.umirc.ts` 或 `config/config.ts` 文件中定义插件配置。
例如,如果我们想要修改 antd 的默认主题色为蓝色,可以在 `.umirc.ts` 或 `config/config.ts` 中添加如下代码:
```typescript
import { defineConfig } from 'umi';
export default defineConfig({
plugins: [
['umi-plugin-react', {
antd: {
theme: {
'@primary-color': '#1890ff',
},
},
}],
],
});
```
这里我们使用了 `umi-plugin-react` 插件,并在插件配置中指定了 antd 的主题色为蓝色。
注意,如果您使用的是 umi 3.x 版本,插件的配置方式已经改变。您需要将插件配置写成对象的形式,例如:
```typescript
import { defineConfig } from 'umi';
export default defineConfig({
plugins: [
['umi-plugin-react', {
antd: {
theme: {
'@primary-color': '#1890ff',
},
},
}],
],
});
```
阅读全文