forked from the-via/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocusaurus.config.js
executable file
·52 lines (52 loc) · 1.26 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
module.exports = {
title: "VIA",
tagline: "Your keyboard's best friend",
url: "https://caniusevia.com",
baseUrl: "/",
favicon: "img/favicon.ico",
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"
},
links: [
{
href: "https://github.com/the-via/releases/releases/latest",
label: "Download",
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" }
]
},
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")
}
}
]
]
};