zmk_mf68/docs/docusaurus.config.js

145 lines
4.2 KiB
JavaScript
Raw Normal View History

const path = require("path");
2020-05-26 11:33:21 +10:00
module.exports = {
title: "ZMK Firmware",
tagline: "Modern, open source keyboard firmware",
url: "https://zmk.dev",
2020-05-26 11:33:21 +10:00
baseUrl: "/",
favicon: "img/favicon.ico",
trailingSlash: "false",
organizationName: "zmkfirmware", // Usually your GitHub org/user name.
2020-05-26 11:33:21 +10:00
projectName: "zmk", // Usually your repo name.
plugins: [
path.resolve(__dirname, "src/docusaurus-tree-sitter-plugin"),
path.resolve(__dirname, "src/hardware-metadata-collection-plugin"),
path.resolve(__dirname, "src/hardware-metadata-static-plugin"),
path.resolve(__dirname, "src/hardware-schema-typescript-plugin"),
path.resolve(__dirname, "src/setup-script-generation-plugin"),
],
2020-05-26 11:33:21 +10:00
themeConfig: {
colorMode: {
respectPrefersColorScheme: 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",
2020-05-26 11:33:21 +10:00
activeBasePath: "docs",
label: "Docs",
position: "left",
},
{ to: "blog", label: "Blog", position: "left" },
2021-02-17 07:34:09 +11:00
{
to: "power-profiler",
label: "Power Profiler",
position: "left",
},
2020-05-26 11:33:21 +10:00
{
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/development/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://zmk.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
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} ZMK Project Contributors. <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png" /></a>`,
2020-05-26 11:33:21 +10:00
},
2020-06-30 00:20:07 +10:00
algolia: {
appId: "USXLDJ14JE",
2022-04-06 07:02:14 +10:00
apiKey: "384a3bd2d50136c9dc8c8ddfe1b3a4b2",
2020-06-30 00:20:07 +10:00
indexName: "zmkfirmware",
},
2020-05-26 11:33:21 +10:00
},
presets: [
[
"@docusaurus/preset-classic",
{
googleAnalytics: {
trackingID: "UA-145201102-2",
anonymizeIP: true,
},
2020-05-26 11:33:21 +10:00
docs: {
// Removed (for now) until we have content for each level of the generated breadcrumbs
breadcrumbs: false,
2020-05-26 11:33:21 +10:00
// It is recommended to set document id as docs home page (`docs/` path).
sidebarPath: require.resolve("./sidebars.js"),
// Please change this to your repo.
2020-08-13 14:19:59 +10:00
editUrl: "https://github.com/zmkfirmware/zmk/edit/main/docs/",
2020-05-26 11:33:21 +10:00
},
blog: {
showReadingTime: true,
// Please change this to your repo.
2020-08-13 14:19:59 +10:00
editUrl: "https://github.com/zmkfirmware/zmk/edit/main/docs/",
2020-05-26 11:33:21 +10:00
},
theme: {
customCss: [
require.resolve("./src/css/custom.css"),
require.resolve("./src/css/codes.css"),
],
2020-05-26 11:33:21 +10:00
},
},
],
],
};