forked from byc233518/schema-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.umirc.js
29 lines (28 loc) · 789 Bytes
/
.umirc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { defineConfig } from 'dumi';
export default defineConfig({
title: 'schema生成器',
favicon: 'https://img.alicdn.com/tfs/TB17UtINiLaK1RjSZFxXXamPFXa-606-643.png',
logo: 'https://img.alicdn.com/tfs/TB17UtINiLaK1RjSZFxXXamPFXa-606-643.png',
navs: [
null,
{
title: 'FormRender',
path: 'https://x-render.gitee.io/form-render/',
},
{
title: 'GitHub',
path: 'https://github.com/form-render/schema-generator',
},
{
title: '更新日志',
path:
'https://github.com/form-render/schema-generator/blob/master/CHANGELOG.md',
},
],
outputPath: 'docs-dist',
mode: 'site',
base: '/schema-generator/',
publicPath: '/schema-generator/',
exportStatic: {},
// more config: https://d.umijs.org/config
});