forked from pansyjs/watermark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.umirc.ts
37 lines (35 loc) · 822 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
import { join } from 'path';
const logo = 'https://cdn.jsdelivr.net/gh/wangxingkang/pictures@latest/imgs/20210427184129.svg';
export default {
title: 'Watermark',
logo,
favicon: logo,
mode: 'site',
navs: [
null,
{
title: '友情链接',
children: [
{ title: 'AMap', path: 'https://amap.xingkang.wang' },
{ title: 'Hooks', path: 'https://hooks.xingkang.wang' },
{ title: '证件加水印', path: 'https://watermark-pro.vercel.app' },
]
},
{
title: 'GitHub',
path: 'https://github.com/pansyjs/watermark',
},
],
alias: {
'@pansy/watermark': join(__dirname, 'packages/core/src'),
},
resolve: {
includes: [
'docs',
'packages/core/docs',
'packages/react/docs'
]
},
hash: true,
dynamicImport: {}
};