forked from lobehub/lobe-tts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dumirc.ts
79 lines (74 loc) · 1.8 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
import { defineConfig } from 'dumi';
import path from 'node:path';
import { description, homepage, name } from './package.json';
const isProduction = process.env.NODE_ENV === 'production';
const themeConfig = {
actions: [
{
link: homepage,
openExternal: true,
text: 'Github',
},
{
link: '/components/use-speech-recognition',
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: description,
footer: 'Made with 🤯 by LobeHub',
giscus: {
category: 'Q&A',
categoryId: 'DIC_kwDOKoaTlM4Cin-0',
repo: 'lobehub/lobe-tts',
repoId: 'R_kgDOKoaTlA',
},
name: 'TTS',
socialLinks: {
discord: 'https://discord.gg/AYFPHvv2jT',
github: homepage,
},
title: 'Lobe TTS',
};
export default defineConfig({
/* eslint-disable sort-keys-fix/sort-keys-fix */
alias: {
'@lobehub/tts/react': path.join(__dirname, './src/react'),
},
/* eslint-enable */
apiParser: isProduction ? {} : false,
base: '/',
define: {
'process.env': process.env,
},
favicons: ['https://lobehub.com/favicon.ico'],
locales: [
{ id: 'en-US', name: 'English' },
{ id: 'zh-CN', name: '简体中文' },
],
// mfsu: isWin ? undefined : {},
mfsu: false,
npmClient: 'pnpm',
publicPath: '/',
resolve: {
atomDirs: [{ dir: 'src/react', type: 'component' }],
entryFile: isProduction ? './src/index.ts' : undefined,
},
sitemap: {
hostname: 'https://tts.lobehub.com',
},
styles: [
`html, body { background: transparent; }
@media (prefers-color-scheme: dark) {
html, body { background: #000; }
}`,
],
themeConfig,
title: 'Lobe TTS',
});