-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.umirc.ts
49 lines (48 loc) · 1.08 KB
/
.umirc.ts
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import { defineConfig } from 'dumi';
function getMenus (base = '/docs') {
const menus: any = {
'/docs': [
{
title: '介绍',
children: [
'/docs/README',
'/docs/getting-started',
],
},
{
title: '组件',
children: [
'/docs/icon',
'/docs/button',
'/docs/layout',
'/docs/grid',
'/docs/switch',
'/docs/radio',
'/docs/checkbox'
],
},
],
};
return (menus[base]);
}
export default defineConfig({
title: 'kite-design',
favicon: 'https://user-images.githubusercontent.com/9554297/83762004-a0761b00-a6a9-11ea-83b4-9c8ff721d4b8.png',
logo: 'https://user-images.githubusercontent.com/9554297/83762004-a0761b00-a6a9-11ea-83b4-9c8ff721d4b8.png',
outputPath: 'docs-dist',
mode: 'site',
menus: {
'/docs':getMenus()
},
navs: [
{
title:"文档",
path:'/docs'
},
{
title: 'GitHub',
path: 'https://github.com/Leioy/kite-design',
},
],
// more config: https://d.umijs.org/config
});