forked from lobehub/lobe-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.dumirc.ts
110 lines (104 loc) · 2.74 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
import { defineConfig } from 'dumi';
import { SiteThemeConfig } from 'dumi-theme-lobehub';
import { INavItem } from 'dumi/dist/client/theme-api/types';
import { resolve } from 'node:path';
import { description, homepage, name } from './package.json';
const isProduction = process.env.NODE_ENV === 'production';
const isWin = process.platform === 'win32';
const nav: INavItem[] = [
{ link: '/components/action-icon', title: 'Components' },
{ link: '/brand/lobehub', title: 'Brand' },
{ link: '/mdx/callout', title: 'Mdx' },
{ link: 'https://icons.lobehub.com', mode: 'override', title: 'Icons' },
{ link: 'https://charts.lobehub.com', mode: 'override', title: 'Charts' },
{ link: '/colors', title: 'Colors' },
{ link: '/changelog', title: 'Changelog' },
];
const themeConfig: SiteThemeConfig = {
actions: [
{
icon: 'Github',
link: homepage,
openExternal: true,
text: 'GitHub',
},
{
link: '/components/action-icon',
text: 'Get Started',
type: 'primary',
},
],
analytics: {
plausible: {
domain: 'ui.lobehub.com',
scriptBaseUrl: 'https://plausible.lobehub-inc.cn',
},
},
apiHeader: {
docUrl: `{github}/tree/master/src/{atomId}/index.md`,
match: ['/components', '/brand', '/mdx'],
pkg: name,
sourceUrl: `{github}/tree/master/src/{atomId}/index.tsx`,
},
description,
giscus: {
category: 'Q&A',
categoryId: 'DIC_kwDOJloKoM4CXsCu',
repo: 'lobehub/lobe-ui',
repoId: 'R_kgDOJloKoA',
},
lastUpdated: true,
metadata: {
openGraph: {
image:
'https://repository-images.githubusercontent.com/643435168/789cab53-cae5-43fa-965d-5928c3c63c1c',
},
},
name: 'UI',
nav,
prefersColor: {
default: 'dark',
switch: false,
},
socialLinks: {
discord: 'https://discord.gg/AYFPHvv2jT',
github: homepage,
},
title: 'Lobe UI',
};
export default defineConfig({
alias: {
'@bentwnghk/ui/brand': resolve(__dirname, './src/brand'),
'@bentwnghk/ui/mdx': resolve(__dirname, './src/mdx'),
},
apiParser: isProduction ? {} : false,
base: '/',
define: {
'process.env': process.env,
},
exportStatic: {},
extraBabelPlugins: ['babel-plugin-antd-style'],
favicons: ['https://lobehub.com/favicon.ico'],
jsMinifier: 'swc',
locales: [{ id: 'en-US', name: 'English' }],
mfsu: isWin ? undefined : {},
npmClient: 'pnpm',
publicPath: '/',
resolve: isProduction
? {
entryFile: './src/index.ts',
}
: undefined,
sitemap: {
hostname: 'https://ui.lobehub.com',
},
ssr: isProduction ? {} : false,
styles: [
`html, body { background: transparent; }
@media (prefers-color-scheme: dark) {
html, body { background: #000; }
}`,
],
themeConfig,
title: 'Lobe UI',
});