-
Notifications
You must be signed in to change notification settings - Fork 52
/
.dumirc.ts
159 lines (158 loc) · 4.25 KB
/
.dumirc.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
import { defineConfig } from 'dumi';
import { repository, version, homepage } from './package.json';
export default defineConfig({
locales: [{ id: 'zh', name: '中文' }, { id: 'en', name: 'English' }],
favicons: ['https://mdn.alipayobjects.com/huamei_qa8qxu/afts/img/A*7svFR6wkPMoAAAAAAAAAAAAADmJ7AQ/original'], // 网站 favicon
metas: [ // 自定义 meta 标签
{ name: 'keywords', content: 'AntV' },
{ name: 'description', content: 'Ant Visualization solution' },
],
themeConfig: {
title: 'AntV',
description: 'Ant Visualization solution',
defaultLanguage: 'zh', // 默认语言
isAntVSite: true, // 是否是 AntV 的大官网
footerTheme: 'light',
siteUrl: homepage, // 官网地址
githubUrl: repository.url, // GitHub 地址
showSearch: true, // 是否显示搜索框
showGithubCorner: true, // 是否显示头部的 GitHub icon
showAntVProductsCard: true, // 是否显示 AntV 产品汇总的卡片
showLanguageSwitcher: true, // 是否显示官网语言切换
showWxQrcode: true, // 是否显示头部菜单的微信公众号
docsearchOptions: { // 头部搜索框配置
apiKey: '9d1cd586972bb492b7b41b13a949ef30',
indexName: 'antv_g6',
},
navs: [
{
slug: 'docs/specification',
title: {
zh: '设计语言',
en: 'Design',
},
},
{
slug: 'case',
title: {
zh: '场景案例',
en: 'Show Case',
},
},
{
slug: 'quick',
title: {
zh: '提交 Issue',
en: 'Quick Issue'
}
}
],
ecosystems: [ // 头部的菜单中的「周边生态」
],
docs: [
{
slug: 'specification/principles',
title: {
zh: '设计价值观',
en: 'Design Values',
},
order: 0,
},
{
slug: 'specification/language',
title: {
zh: '设计语言',
en: 'Language',
},
order: 1,
},
{
slug: 'specification/strategy',
title: {
zh: '设计策略',
en: 'Strategies',
},
order: 2,
},
{
slug: 'specification/graph',
title: {
zh: '图表设计指引',
en: 'Visualization Guides',
},
order: 3,
},
{
slug: 'specification/module',
title: {
zh: '组件设计指引',
en: 'Components Guide',
},
order: 4,
},
{
slug: 'specification/module/infoCom',
title: {
zh: '信息组件 Info Component',
en: 'Info Componen',
},
order: 6,
},
{
slug: 'specification/tool',
title: {
zh: '工具',
en: 'Tools',
},
order: 6,
},
],
tutorials: [
{
slug: 'manual/about',
title: {
zh: '关于',
en: 'About',
},
order: 1,
},
],
examples: [
],
mdPlayground: {
// 第一个分块的大小
splitPaneMainSize: '62%',
},
announcement: {
zh: '',
en: '',
},
/** 首页技术栈介绍 */
detail: {
title: {
zh: 'Antv',
en: 'Antv',
},
description: {
zh: 'Ant Visualization solution',
en: 'Ant Visualization solution',
},
},
},
alias: {
site: '/site',
},
mfsu: false,
analytics: {
// google analytics 的 key (GA 4)
// ga_v2: 'G-abcdefg',
// 若你在使用 GA v1 旧版本,请使用 `ga` 来配置
ga_v2: 'G-96Q5R280YF',
// 百度统计的 key
// baidu: 'baidu_tongji_key',
},
links: [
],
scripts: [
],
});