-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocusaurus.config.js
85 lines (84 loc) · 2.57 KB
/
docusaurus.config.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
79
80
81
82
83
84
85
module.exports = {
title: 'xViz',
tagline: 'Advanced Custom Visuals for Power BI',
url: 'https://xviz.com',
baseUrl: '/',
favicon: "img/xviz.png",
organizationName: 'visualbis', // Usually your GitHub org/user name.
projectName: 'xvizdocs', // Usually your repo name.
themeConfig: {
navbar: {
title: 'xViz',
logo: {
alt: 'xViz Logo',
src: 'img/logo.svg',
},
links: [
{ to: "docs/general/Getting-Started", label: "Docs", position: "right" }
]
},
footer: {
style: 'dark',
links: [
{
title: 'Videos',
items: [
{
label: 'Videos',
to: 'https://xviz.com/videos/',
},
{
label: 'Webinars',
to: 'https://xviz.com/webinars/',
},
],
},
{
title: 'Community',
items: [
{
label: 'Developers',
to: 'https://community.xviz.com/',
},
{
label: 'LinkedIn',
href: 'https://www.linkedin.com/company/xviz/'
}
]
},
{
title: 'Social',
items: [
{
label: 'Blogs',
to: 'https://xviz.com/blogs/',
},
{
label: 'Twitter',
href: 'https://twitter.com/xvizsuite',
}
]
}
],
logo: {
alt: 'xViz Logo',
src: 'img/xviz-logo-white.png',
href: 'https://xviz.com/',
},
copyright: `Copyright © ${new Date().getFullYear()} Visual BI`
}
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js')
},
theme: {
customCss: require.resolve('./src/css/custom.css')
}
}
]
]
};