-
Notifications
You must be signed in to change notification settings - Fork 0
/
.umirc.ts
50 lines (49 loc) · 1.73 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
50
import { defineConfig } from 'dumi';
export default defineConfig({
title: '吃个甘蔗嚼一年',
favicon: 'https://zcsuper-image-1301565650.cos.ap-nanjing.myqcloud.com/MyWordPhotos/logo.jpg',
logo: 'https://zcsuper-image-1301565650.cos.ap-nanjing.myqcloud.com/MyWordPhotos/logo.jpg',
outputPath: 'docs-dist',
menus: {
// 需要自定义侧边菜单的路径,没有配置的路径还是会使用自动生成的配置
'/React': [
{
title: '菜单项',
path: '菜单路由(可选)',
children: [
// 菜单子项(可选)
'React/index.md', // 对应的 Markdown 文件,路径是相对于 resolve.includes 目录识别的
],
},
],
// 如果该路径有其他语言,需在前面加上语言前缀,需与 locales 配置中的路径一致
},
// '/React': [
// {
// title: '菜单项',
// path: '菜单路由(可选)',
// children: [
// // 菜单子项(可选)
// 'React/index.md', // 对应的 Markdown 文件,路径是相对于 resolve.includes 目录识别的
// ],
// },
// ],
// 单语言配置方式如下
// navs: [
// null, // null 值代表保留约定式生成的导航,只做增量配置
// {
// title: 'GitHub',
// path: 'https://github.com/umijs/dumi',
// },
// {
// title: '我有二级导航',
// path: '链接是可选的',
// // 可通过如下形式嵌套二级导航菜单,目前暂不支持更多层级嵌套:
// children: [
// { title: '第一项', path: 'https://d.umijs.org' },
// { title: '第二项', path: 'https://d.umijs.org' },
// ],
// },
// ],
// more config: https://d.umijs.org/config
});