-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathdocusaurus.config.js
106 lines (106 loc) · 3.34 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
module.exports = {
title: "ValQ Documentation",
tagline: "Learn how to install, Model, Plan, Simulate, and Analyze with ValQ",
url: "https://valq.com",
baseUrl: "/",
noIndex: true, // Defaults to `false`
favicon: "img/cropped-valq-icon-1-192x192.png",
organizationName: process.env.CIRCLE_PROJECT_USERNAME || "visualbis", // Usually your GitHub org/user name.
projectName: "valqsaurus", // Usually your repo name.
plugins: ['@docusaurus/plugin-google-analytics'],
themeConfig: {
googleAnalytics: {
trackingID: 'UA-136298126-1',
// Optional fields.
anonymizeIP: true, // Should IPs be anonymized?
},
navbar: {
hideOnScroll: true,
title: "ValQ",
logo: {
alt: "ValQ Logo",
src: "img/valq-icon.png",
href: "https://valq.com",
},
items: [
{
to: "/",
label: "Docs",
position: "left",
activeBaseRegex: '^((?!releases|references|how_to_videos).)*$',
title: "Docs Home",
},
{
to: "/references/formula-list",
label: "Functions",
activeBasePath: '/references',
position: "left",
},
{
to: "how_to_videos/get-started",
label: "Videos",
activeBasePath: '/how_to_videos',
position: "left",
},
{
to: "/releases",
label: "Release Notes",
position: "left",
},
],
},
footer: {
style: "light",
links: [{
title: "Docs",
items: [{
label: "Documentation",
to: "/",
},
{
label: "Functions",
to: "references/formulas/if",
},
],
},
{
title: "More",
items: [{
label: "ValQ Community",
href: "https://community.valq.com/",
},
{
label: "Status",
href: "http://status.valq.com/",
},
],
},
{
title: "Social",
items: [{
label: "Blog",
href: "https://valq.com/blogs/",
},],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Lumel`,
},
ogImage: "img/whats-new-in-valq.jpg",
twitterImage: "img/whats-new-in-valq.jpg",
},
plugins: [require.resolve('docusaurus-lunr-search')],
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
sidebarPath: require.resolve("./sidebars.js"),
routeBasePath: '/',
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
};