-
Notifications
You must be signed in to change notification settings - Fork 1
/
.dumirc.ts
108 lines (103 loc) · 2.67 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
import { defineConfig } from 'dumi';
import { homepage, name } from './package.json';
const isProduction = process.env.NODE_ENV === 'production';
const isWin = process.platform === 'win32';
const themeConfig = {
logo: 'https://avatars.githubusercontent.com/u/148947838',
footerConfig: {
resources: {
title: 'Resources',
items: [
{
description: 'CloudNative Components',
openExternal: true,
title: 'Yunti Charts',
url: 'https://github.com/yuntijs/yunti-charts',
},
{
description: 'Awesome lint configs',
openExternal: true,
title: 'Yunti Lint',
url: 'https://github.com/yuntijs/yunti-lint',
},
],
},
moreProducts: {
title: 'More Products',
items: [
{
description: 'Framework for k8s',
openExternal: true,
title: 'Kubebb',
url: 'https://github.com/kubebb',
},
{
description: 'One-stop LLMOps platform',
openExternal: true,
title: 'KubeAGI',
url: 'https://github.com/kubeagi',
},
],
},
},
actions: [
{
link: homepage,
openExternal: true,
text: 'Github',
},
{
link: '/components/action-icon',
text: 'Get Started',
type: 'primary',
},
],
apiHeader: {
docUrl: `{github}/tree/master/src/{atomId}/index.md`,
match: ['/components'],
pkg: name,
sourceUrl: `{github}/tree/master/src/{atomId}/index.tsx`,
},
description: 'Yunti Charts is an open-source Charts component library for building web apps',
footer: 'Made with ☁️ by YuntiJS',
giscus: {
category: 'Q&A',
categoryId: 'DIC_kwDOLI-Zns4Ccyx5',
repo: 'yuntijs/yunti-charts',
repoId: 'R_kgDOLI-Zng',
},
name: 'Charts',
nav: [
{ link: '/components/line-chart', title: 'Components' },
{ link: '/changelog', title: 'Changelog' },
],
socialLinks: {
github: homepage,
},
title: 'Yunti Charts',
};
export default defineConfig({
apiParser: {},
base: isProduction ? '/yunti-charts/' : '/',
define: {
'process.env': process.env,
},
extraBabelPlugins: ['babel-plugin-antd-style'],
favicons: ['https://avatars.githubusercontent.com/u/148947838?s=64&v=4'],
locales: [{ id: 'en-US', name: 'English' }],
mfsu: isWin ? undefined : {},
npmClient: 'pnpm',
publicPath: '/yunti-charts/',
outputPath: './dist/yunti-charts/',
resolve: {
entryFile: './src/index.ts',
},
styles: [
`html, body { background: transparent; }
@media (prefers-color-scheme: dark) {
html, body { background: #000; }
}`,
],
themeConfig,
title: 'Yunti Charts',
});