-
Notifications
You must be signed in to change notification settings - Fork 0
/
docusaurus.config.js
152 lines (152 loc) · 4.12 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
module.exports = {
url: 'https://covisart.github.io', // Your website URL
baseUrl: '/',
projectName: 'SimulatorUserGuid',
organizationName: 'Covisart',
title: "Covisart New Generation Simulator",
tagline:
"Vehicle simulator based on a motion system developed using virtual and augmented reality technologies.",
favicon: "img/favicon.ico",
organizationName: "evert-arias", // Usually your GitHub org/user name.
projectName: "New Generation Simulator", // Usually your repo name.
themeConfig: {
/*announcementBar: {
id: "newrelease",
content:
'⭐️ EasyButton v2.0 has been released. Download from <a target="_blank" rel="noopener noreferrer" href="https://github.com/evert-arias/EasyButton/archive/v2.0.0.zip">GitHub</a>. ⭐️',
},*/
navbar: {
title: "Covisart Simulator",
logo: {
alt: "Covisart Logo",
src: "img/logo.svg",
},
links: [
{
to: "docs/userguid",
activeBasePath: "userguid",
label: "Setups",
position: "left",
},
{
to: "docs/introduction",
activeBasePath: "docs",
label: "Docs",
position: "left",
},
{
to: "docs/on-single-press-api",
activeBasePath: "api",
label: "API",
position: "left",
},
{
to: "docs/on-single-press-example",
activeBasePath: "examples",
label: "Examples",
position: "left",
},
{ to: "/contributors", label: "Contributors", position: "left" },
{ to: "https://blog.covisart.com", label: "Blog", position: "right" },
{
href: "https://github.com/Covisart",
label: "GitHub",
position: "right",
},
],
},
footer: {
style: "dark",
links: [
{
title: "Setups",
items: [
{
label: "Introduction",
to: "docs/introduction",
},
{
label: "Installation",
to: "docs/installation",
},
{
label: "Fundamentals",
to: "docs/fundamentals",
},
],
},
{
title: "Docs",
items: [
{
label: "Introduction",
to: "docs/introduction",
},
{
label: "Installation",
to: "docs/installation",
},
{
label: "Fundamentals",
to: "docs/fundamentals",
},
],
},
{
title: "Examples",
items: [
{
label: "Single Press",
to: "docs/on-single-press-example",
},
{
label: "Detecting Sequence",
href: "docs/on-sequence-example",
},
{
label: "Pressed For Duration",
href: "docs/on-pressed-for-duration-example",
},
],
},
{
title: "Community",
items: [
{
label: "Blog",
to: "https://blog.earias.me/",
},
{
label: "GitHub",
href: "https://github.com/evert-arias/EasyButton",
},
{
label: "Youtube",
href: "https://www.youtube.com/channel/UCbdTIe6YpgJ6bCL7FI16Bcw",
},
],
},
],
copyright: `Made with 💙 by <a target="_blank" rel="noopener noreferrer" href="https://github.com/evert-arias">Evert Arias</a>`,
},
googleAnalytics: {
trackingID: "UA-137998950-8",
anonymizeIP: false,
},
},
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://github.com/COVISART/SimulatorUserGuid",
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
plugins: [require.resolve("@docusaurus/plugin-google-analytics")],
};