-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
.dumirc.ts
108 lines (103 loc) · 2.54 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 { description, homepage, name } from './package.json';
const isWin = process.platform === 'win32';
const themeConfig = {
actions: [
{
link: homepage,
openExternal: true,
text: 'Github',
},
{
link: '/components/readme-hero',
text: 'Get Started',
type: 'primary',
},
],
apiHeader: {
docUrl: false,
match: ['/components'],
pkg: name,
sourceUrl: false,
type: 'doc',
},
description: description,
docStyle: 'pure',
footer: 'Made with 🤯 by LobeHub',
footerConfig: {
resources: {
items: [
{
description: 'Markdown processor ',
openExternal: true,
title: 'Remark',
url: 'https://github.com/remarkjs',
},
{
description: 'Concise badges',
openExternal: true,
title: 'Shields',
url: 'https://shields.io/',
},
{
description: 'Icons for popular brands',
openExternal: true,
title: 'Simple Icons',
url: 'https://simpleicons.org',
},
{
description: 'Dynamically stats for github',
openExternal: true,
title: 'Readme Stats',
url: 'https://github.com/anuraghazra/github-readme-stats',
},
{
description: 'List of GitHub badges',
openExternal: true,
title: 'Awesome Badges',
url: 'https://github.com/Envoy-VC/awesome-badges',
},
],
title: 'Resources',
},
},
giscus: {
category: 'Ideas',
categoryId: 'DIC_kwDOJloKoM4CXsCu',
repo: 'lobehub/lobe-readme-wizard',
repoId: 'R_kgDOKTF8TQ',
},
name: 'ReadmeWizard',
nav: [
{ link: '/components/readme-hero', title: 'Generator' },
{ link: 'https://simpleicons.org/', mode: 'override', title: 'Icons' },
{ link: '/changelog', title: 'Changelog' },
],
socialLinks: {
discord: 'https://discord.gg/AYFPHvv2jT',
github: homepage,
},
title: 'ReadmeWizard - LobeHub',
};
export default defineConfig({
base: '/',
define: {
'process.env': process.env,
},
favicons: ['https://lobehub.com/favicon.ico'],
locales: [{ id: 'en-US', name: 'English' }],
mfsu: isWin ? undefined : {},
npmClient: 'pnpm',
publicPath: '/',
sitemap: {
hostname: 'https://readme-wizard.lobehub.com',
},
styles: [
`html, body { background: transparent; }
@media (prefers-color-scheme: dark) {
html, body { background: #000; }
}`,
],
themeConfig,
title: 'ReadmeWizard',
});