zmk_mf68/docs/docusaurus.config.js

109 lines
2.8 KiB
JavaScript
Raw Normal View History

2020-05-26 11:33:21 +10:00
module.exports = {
title: "ZMK 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: {
2020-06-14 23:23:25 +10:00
sidebarCollapsible: false,
2020-05-26 11:33:21 +10:00
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-10 13:18:12 +10:00
src: "img/zmk_logo.svg",
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",
2020-07-04 00:45:50 +10:00
href: "community/discord/invite",
},
// {
// 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
},
2020-06-30 00:20:07 +10:00
algolia: {
apiKey: "75325855fc90356828fe212d38e5ca34",
indexName: "zmkfirmware",
},
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.
2020-06-18 00:38:15 +10:00
editUrl: "https://githlab.com/zmkproject/zmk/edit/main/docs/",
2020-05-26 11:33:21 +10:00
},
blog: {
showReadingTime: true,
// Please change this to your repo.
2020-06-18 00:38:15 +10:00
editUrl: "https://gitlab.com/zmkproject/zmk/edit/main/docs/blog/",
2020-05-26 11:33:21 +10:00
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
};