-
Notifications
You must be signed in to change notification settings - Fork 4
/
.dumirc.ts
37 lines (36 loc) · 1.06 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
import { defineConfig } from 'dumi';
export default defineConfig({
title: 'cryptography',
favicon: 'https://t.codingcat.top/static/imgs/logo.png',
logo: 'https://t.codingcat.top/static/imgs/logo.png',
outputPath: 'docs-dist',
mode: 'site',
analytics: {
// 百度统计代码,配置后会启用
baidu: 'bd4f0366bf16042bba6c02072ead174d',
},
// more config: https://d.umijs.org/config
publicPath: process.env.NODE_ENV === 'production' ? '/' : '/',
base: '/',
locales: [
['en-US', 'English'],
['zh-CN', '中文'],
],
exportStatic: {},
navs: {
'en-US': [
null, // A null value means to retain the conventionally generated navigation and only do incremental configuration
{
title: 'GitHub',
path: 'https://github.com/istommao/Cryptography',
},
],
'zh-CN': [
null, // A null value means to retain the conventionally generated navigation and only do incremental configuration
{
title: 'GitHub',
path: 'https://github.com/istommao/Cryptography',
},
],
},
});