-
Notifications
You must be signed in to change notification settings - Fork 66
/
.docgenirc.js
36 lines (36 loc) · 994 Bytes
/
.docgenirc.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
/**
* @type {import('@docgeni/core').DocgeniConfig}
*/
module.exports = {
mode: 'full',
title: 'Planet',
description: '微前端解决方案',
docsDir: 'docs',
defaultLocale: 'zh-cn',
repoUrl: 'https://github.com/worktile/ngx-planet',
logoUrl: 'assets/images/planet.png',
navs: [
null,
{
title: '示例',
path: 'http://planet-examples.ngnice.com',
isExternal: true
},
{
title: 'GitHub',
path: 'https://github.com/worktile/ngx-planet',
isExternal: true
},
{
title: '更新日志',
path: 'https://github.com/worktile/ngx-planet/blob/master/CHANGELOG.md',
isExternal: true,
locales: {
'en-us': {
title: 'Changelog'
}
}
}
],
footer: 'Open-source MIT Licensed | Copyright © 2020-present<br />Powered by PingCode'
};