-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy path.umirc.js
46 lines (45 loc) · 1.07 KB
/
.umirc.js
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
import { defineConfig } from 'dumi';
export default defineConfig({
mode: 'site',
hash: true,
favicon:
'https://raw.githubusercontent.com/artdong/react-org-tree/f9c418ef7b904c83c1aba36cfc3aabbb9b3da10f/img/logo.svg',
logo:
'https://raw.githubusercontent.com/artdong/react-org-tree/f9c418ef7b904c83c1aba36cfc3aabbb9b3da10f/img/logo.svg',
outputPath: 'docs-dist',
base: 'react-org-tree',
publicPath: '/react-org-tree/',
resolve: {
includes: ['docs'],
previewLangs: [],
},
locales: [
['en', 'English'],
['zh', '中文'],
],
navs: {
en: [
null,
{ title: 'GitHub', path: 'https://github.com/artdong/react-org-tree' },
],
zh: [
null,
{ title: 'GitHub', path: 'https://github.com/artdong/react-org-tree' },
],
},
metas: [
{
name: 'keywords',
content:
'react, react-org-tree, react-components, javascript',
},
{
name: 'description',
content: '🏆 一个react组织树组件',
},
],
exportStatic: {},
// theme: {
// '@c-primary': '#6451AB',
// },
});