-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
.dumirc.ts
70 lines (65 loc) · 1.63 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
import { defineConfig } from 'dumi';
import { resolve } from 'node:path';
import { homepage, name } from '../package.json';
const isWin = process.platform === 'win32';
const themeConfig = {
actions: [
{
icon: 'Github',
link: homepage,
openExternal: true,
text: 'Github',
},
{
link: '/components/example',
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`,
type: 'doc',
},
description: 'Lobe UI is an open-source UI component library for building chatbot web apps',
footer: 'Made with 🤯 by LobeHub',
giscus: {
category: 'Q&A',
categoryId: 'DIC_kwDOJloKoM4CXsCu',
repo: 'lobehub/lobe-ui',
repoId: 'R_kgDOJloKoA',
},
name: 'DUMI',
socialLinks: {
discord: 'https://discord.gg/AYFPHvv2jT',
github: homepage,
},
title: 'Dumi Theme LobeHub',
};
export default defineConfig({
alias: {
'@': resolve(__dirname, '../src'),
'dumi-theme-lobehub': resolve(__dirname, '../src'),
},
codeSplitting: {
jsStrategy: 'granularChunks',
},
define: {
'process.env': process.env,
},
favicons: ['https://npm.elemecdn.com/@lobehub/assets-favicons/assets/favicon.ico'],
locales: [{ id: 'en-US', name: 'English' }],
mfsu: isWin ? undefined : {},
npmClient: 'pnpm',
ssr: false,
styles: [
`html, body { background: transparent; }
@media (prefers-color-scheme: dark) {
html, body { background: #000; }
}`,
],
themeConfig,
title: 'Dumi Theme LobeHub',
});