zmk_mf68/docs/docusaurus.config.js

104 lines
2.6 KiB
JavaScript
Raw Normal View History

2020-05-26 11:33:21 +10:00
module.exports = {
title: "ZMK Keyboard Firmware",
tagline: "Modern, open source keyboard firmware",
url: "https://zmkfirmware.dev",
2020-05-26 11:33:21 +10:00
baseUrl: "/",
favicon: "img/favicon.ico",
organizationName: "zmkfirmware", // Usually your GitHub org/user name.
2020-05-26 11:33:21 +10:00
projectName: "zmk", // Usually your repo name.
themeConfig: {
navbar: {
2020-06-09 00:46:38 +10:00
title: "ZMK Firmware",
2020-05-26 11:33:21 +10:00
logo: {
alt: "ZMK Logo",
2020-06-09 00:46:38 +10:00
src: "img/zmk_logo.png",
2020-05-26 11:33:21 +10:00
},
links: [
{
to: "docs/",
activeBasePath: "docs",
label: "Docs",
position: "left",
},
{ to: "blog", label: "Blog", position: "left" },
{
href: "https://github.com/zmkfirmware/zmk",
label: "GitHub",
2020-05-26 11:33:21 +10:00
position: "right",
},
],
},
footer: {
style: "dark",
links: [
{
title: "Docs",
items: [
{
2020-06-01 05:35:32 +10:00
label: "Getting Started",
2020-05-26 11:33:21 +10:00
to: "docs/",
},
{
2020-06-01 05:35:32 +10:00
label: "Development",
to: "docs/dev-setup/",
2020-05-26 11:33:21 +10:00
},
],
},
{
title: "Community",
items: [
// {
// label: "Stack Overflow",
// href: "https://stackoverflow.com/questions/tagged/docusaurus",
// },
{
label: "Discord",
href: "https://discord.gg/VJnx9kr",
},
// {
// label: "Twitter",
// href: "https://twitter.com/docusaurus",
// },
],
2020-05-26 11:33:21 +10:00
},
{
title: "More",
items: [
{
label: "Blog",
to: "blog",
},
{
label: "GitHub",
href: "https://github.com/zmkfirmware/zmk",
2020-05-26 11:33:21 +10:00
},
],
},
],
2020-06-01 05:35:32 +10:00
copyright: `Copyright © ${new Date().getFullYear()} ZMK Project Contributors, Built with Docusaurus.`,
2020-05-26 11:33:21 +10:00
},
},
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
// It is recommended to set document id as docs home page (`docs/` path).
homePageId: "intro",
sidebarPath: require.resolve("./sidebars.js"),
// Please change this to your repo.
editUrl: "https://githlab.com/zmkproject/zmk/edit/master/docs/",
},
blog: {
showReadingTime: true,
// Please change this to your repo.
editUrl: "https://gitlab.com/zmkproject/zmk/edit/master/docs/blog/",
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
};