-
Notifications
You must be signed in to change notification settings - Fork 22
/
docusaurus.config.js
executable file
·62 lines (62 loc) · 1.54 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
module.exports = {
title: "VIA",
tagline: "Your keyboard's best friend",
url: "https://caniusevia.com",
baseUrl: "/",
organizationName: "the-via", // Usually your GitHub org/user name.
projectName: "keyboards", // Usually your repo name.
themeConfig: {
twitterImage: "img/icon.png",
ogImage: "img/icon.png",
navbar: {
title: "VIA",
logo: {
alt: "VIA",
src: "img/icon.png",
},
items: [
{
href: "https://www.usevia.app",
label: "Try Now!",
position: "left",
},
{ to: "docs/whats_new", label: "What's New", position: "left" },
{
to: "docs/supported_keyboards",
label: "Supported Keyboards",
position: "left",
},
{ to: "docs/specification", label: "Docs", position: "left" },
{ to: "docs/download_firmware", label: "Firmware", position: "left" },
{
href: "https://discord.gg/NStTR5YaPB",
label: "Discord",
position: "right",
},
{
href: "https://github.com/the-via",
label: "GitHub",
position: "right",
},
],
},
footer: {
style: "dark",
links: [],
copyright: "Built with <2 from the VIA team.",
},
},
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
sidebarPath: require.resolve("./sidebars.js"),
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
};