zmk_mf68/docs/docusaurus.config.js

122 lines
3.2 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-08-12 06:55:36 +10:00
googleAnalytics: {
trackingID: "UA-145201102-2",
anonymizeIP: true,
},
// 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
},
2020-08-06 04:02:37 +10:00
items: [
2020-05-26 11:33:21 +10:00
{
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:
(process.env.URL || "https://zmkfirmware.dev") +
"/community/discord/invite",
2020-07-21 13:39:19 +10:00
},
{
label: "Twitter",
href: "https://twitter.com/ZMKFirmware",
},
],
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-07-22 09:58:34 +10:00
{
html: `
<a href="https://www.netlify.com" target="_blank" rel="noreferrer noopener" aria-label="Deploys by Netlify">
<img src="https://www.netlify.com/img/global/badges/netlify-color-accent.svg" alt="Deploys by Netlify" />
</a>
`,
},
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"),
},
},
],
],
};