forked from alibaba/hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.umirc.js
54 lines (54 loc) · 1.33 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
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: true,
},
'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'],
},
links: [{ rel: 'stylesheet', href: '/style.css' }],
navs: {
'zh-CN': [
null,
{ 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: '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'],
};