-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.dumirc.ts
More file actions
44 lines (43 loc) · 1.09 KB
/
.dumirc.ts
File metadata and controls
44 lines (43 loc) · 1.09 KB
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
import { defineConfig } from 'dumi';
export default defineConfig({
favicons: ['/logo.png'],
outputPath: 'docs-dist',
hash: true,
locales: [
{ id: 'zh-CN', name: '中文' },
{ id: 'en-US', name: 'English' },
],
themeConfig: {
name: 'bitlap',
logo: '/logo.png', // "https://user-images.githubusercontent.com/9554297/83762004-a0761b00-a6a9-11ea-83b4-9c8ff721d4b8.png",
footer:
'Open-source MIT Licensed | Copyright © 2022-present<br />Powered by bitlap.org',
socialLinks: {
github: 'https://github.com/bitlap',
// twitter: 'https://xxxx',
// zhihu: 'https://xxxx',
},
nav: {
'zh-CN': [
// null,
{
title: '实验室',
children: [
{ title: 'smt', link: '/lab/smt' },
{ title: 'zim', link: '/lab/zim' },
],
},
],
'en-US': [
// null,
{
title: 'Lab',
children: [
{ title: 'smt', link: '/en-US/lab/smt' },
{ title: 'zim', link: '/en-US/lab/zim' },
],
},
],
},
},
});