forked from tianshangyouxian/OrangeUIManual
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.umirc.ts
43 lines (41 loc) · 901 Bytes
/
.umirc.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
import { defineConfig } from 'dumi';
const repo = 'OrangeUI';
export default defineConfig({
title: repo,
favicon: 'http://www.orangeui.cn/image/logo_60.png',
logo: 'http://www.orangeui.cn/image/logo_60.png',
outputPath: 'dist',
mode: 'site',
hash: true,
// Because of using GitHub Pages
base: `/`,
publicPath: `/`,
exportStatic: {},
navs: [
null,
// {
// title: 'Install',
// path: '/components/install',
// },
// {
// title: 'Download',
// path: '/components/install/download',
// },
{
title: 'GitHub',
path: 'https://github.com/DelphiTeacher/OrangeUI',
},
{
title: 'Blog',
path: 'http://www.orangeui.cn/wordpress/',
},
{
title: 'VIP',
path: 'http://www.orangeui.cn/delphi_area_index.html',
},
],
locales: [
['zh-CN', '中文'],
['en-US', 'English'],
],
});