-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
113 lines (111 loc) · 3.44 KB
/
docusaurus.config.js
File metadata and controls
113 lines (111 loc) · 3.44 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
module.exports = {
title: "BI Hub",
tagline: "Your BI Search Engine",
url: "https://github.com/divyabhushan/VV-Docs",
baseUrl: "/",
onBrokenLinks: "ignore",
favicon: "img/favicon.ico",
organizationName: "visualbis", // Usually your GitHub org/user name.
projectName: "VV-Docs", // Usually your repo name.
themeConfig: {
sidebarCollapsible: true,
/*
algolia: {
apiKey: "api-key",
indexName: "index-name",
algoliaOptions: {}, // Optional, if provided by Algolia
},
*/
navbar: {
hideOnScroll: true,
logo: {
alt: "BI Hub",
src: "img/buhub-logo.svg",
srcDark: "img/logo-darkmode.svg",
},
items: [
/*
{
to: 'docs/',
activeBasePath: 'docs',
label: 'Docs',
position: 'left',
},
*/
/* {to: 'blog', label: 'Blog', position: 'left'}, */
/* {
href: 'https://github.com/facebook/docusaurus',
label: 'GitHub',
position: 'right',
},
*/
{
to: "/docs/releases",
label: "Release Notes",
position: "left",
activeBasePath: "docs/releases",
},
{
to: "/docs/opensource-attribution/web",
label: "Open Source Attribution",
position: "left",
activeBasePath: "docs/opensource-attribution",
},
{
to: "docs/copyright",
label: "Installation Guide",
position: "right",
activeBasePath: "docs/installation-guide",
},
{
to: "docs/admin-guide/getting-started/welcome",
label: "Admin Guide",
position: "right",
activeBasePath: "docs/admin-guide",
},
{
to: "docs/user-guide/onboard-info",
label: "User Guide",
position: "right",
activeBasePath: "docs/user-guide",
},
],
},
footer: {
style: "dark",
copyright: `
<div class="row">
<div class="col" style="text-align:left">Copyright © ${new Date().getFullYear()} VBI View LLC Solutions.</div>
<div class="col" style="text-align:right">
<a href="https://twitter.com/vbi_hub" target="_blank"><img src="https://raw.githubusercontent.com/visualbis/VV-Docs/master/static/img/twitter.svg" width="21px" height="16px"></a>
<a href="https://www.facebook.com/vbihub/" target="_blank" style="padding-left:10px"><img src="https://raw.githubusercontent.com/divyabhushan/VV-Docs/master/static/img/facebook.svg" width="18px" height="17px"></a>
<a href="https://www.linkedin.com/company/bi-hub/" target="_blank" style="padding-left:10px"><img src="https://raw.githubusercontent.com/divyabhushan/VV-Docs/master/static/img/linkedin.svg" width="18px" height="17px"></a>
</div>
</div>
`,
},
},
plugins: ["docusaurus-lunr-search"],
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
// It is recommended to set document id as docs home page (`docs/` path).
sidebarPath: require.resolve("./sidebars.js"),
},
/*
blog: {
showReadingTime: true,
// Please change this to your repo.
editUrl:
'https://github.com/facebook/docusaurus/edit/master/website/blog/',
},
*/
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
};