forked from alibaba/hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.umirc.js
78 lines (78 loc) · 1.85 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
export default {
// ssr: {},
exportStatic: {},
nodeModulesTransform: {
type: 'none',
exclude: [],
},
extraBabelPlugins: [
[
'babel-plugin-import',
{
libraryName: 'antd',
libraryDirectory: 'es',
style: true,
},
'antd',
],
[
'babel-plugin-import',
{
libraryName: '@alifd/next',
style: false,
},
'fusion',
],
],
mode: 'site',
title: 'ahooks',
favicon: '/simple-logo.svg',
logo: '/logo.svg',
dynamicImport: {},
manifest: {},
links: [{ rel: 'manifest', href: '/asset-manifest.json' }],
hash: true,
resolve: {
includes: ['docs', 'packages/hooks/src', 'packages/use-request', 'packages/use-url-state'],
},
links: [
{
rel: 'stylesheet',
href: 'https://unpkg.com/@alifd/[email protected]/dist/next-noreset.min.css',
},
{ rel: 'stylesheet', href: '/style.css' },
],
navs: {
'zh-CN': [
null,
{
title: '生态',
children: [
{
title: 'useTable',
path: 'https://usetable-ahooks.js.org/',
},
],
},
{ title: 'v1.x', path: 'http://hooks.umijs.org/' },
{ title: 'GitHub', path: 'https://github.com/alibaba/hooks' },
{ title: '更新日志', path: 'https://github.com/alibaba/hooks/releases' },
],
'en-US': [
null,
{
title: 'Ecosystem',
children: [
{
title: 'useTable',
path: 'https://usetable-ahooks.js.org/',
},
],
},
{ title: 'v1.x', path: 'http://hooks.umijs.org/' },
{ title: 'GitHub', path: 'https://github.com/alibaba/hooks' },
{ title: 'Changelog', path: 'https://github.com/alibaba/hooks/releases' },
],
},
headScripts: ['https://s4.cnzz.com/z_stat.php?id=1278992092&web_id=1278992092'],
};