zmk/docs/docusaurus.config.js

174 lines
4.8 KiB
JavaScript
Raw Normal View History

const path = require("path");
const theme = require("./src/theme/prism/themes/github");
const darkTheme = require("./src/theme/prism/themes/github-dark-dimmed");
2020-05-25 18:33:21 -07:00
module.exports = {
title: "ZMK Firmware",
tagline: "Modern, open source keyboard firmware",
url: "https://zmk.dev",
2020-05-25 18:33:21 -07:00
baseUrl: "/",
favicon: "img/favicon.ico",
trailingSlash: "false",
organizationName: "zmkfirmware", // Usually your GitHub org/user name.
2020-05-25 18:33:21 -07: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-25 18:33:21 -07:00
themeConfig: {
colorMode: {
respectPrefersColorScheme: true,
},
prism: {
additionalLanguages: [
"bash",
"c",
"cmake",
"ini",
"linker-script",
"log",
"powershell",
"diff",
],
theme,
darkTheme,
},
// sidebarCollapsible: false,
2020-05-25 18:33:21 -07:00
navbar: {
2020-06-08 07:46:38 -07:00
title: "ZMK Firmware",
2020-05-25 18:33:21 -07:00
logo: {
alt: "ZMK Logo",
2020-06-09 20:18:12 -07:00
src: "img/zmk_logo.svg",
2020-05-25 18:33:21 -07:00
},
2020-08-05 11:02:37 -07:00
items: [
2020-05-25 18:33:21 -07:00
{
to: "docs",
2020-05-25 18:33:21 -07:00
activeBasePath: "docs",
label: "Docs",
position: "left",
},
{ to: "blog", label: "Blog", position: "left" },
2021-02-16 12:34:09 -08:00
{
to: "power-profiler",
label: "Power Profiler",
position: "left",
},
{
to: "keymap-upgrader",
label: "Keymap Upgrader",
position: "left",
},
2020-05-25 18:33:21 -07:00
{
href: "https://github.com/zmkfirmware/zmk",
label: "GitHub",
2020-05-25 18:33:21 -07:00
position: "right",
},
],
},
footer: {
style: "dark",
links: [
{
title: "Docs",
items: [
{
2020-05-31 12:35:32 -07:00
label: "Getting Started",
2020-05-25 18:33:21 -07:00
to: "docs/",
},
{
2020-05-31 12:35:32 -07:00
label: "Development",
to: "docs/development/setup",
2020-05-25 18:33:21 -07: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-20 20:39:19 -07:00
},
{
label: "Twitter",
href: "https://twitter.com/ZMKFirmware",
},
],
2020-05-25 18:33:21 -07:00
},
{
title: "More",
items: [
{
label: "Blog",
to: "blog",
},
{
label: "GitHub",
href: "https://github.com/zmkfirmware/zmk",
2020-05-25 18:33:21 -07:00
},
2020-07-21 16:58:34 -07: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-25 18:33:21 -07: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-25 18:33:21 -07:00
},
2020-06-29 07:20:07 -07:00
algolia: {
appId: "USXLDJ14JE",
2022-04-05 14:02:14 -07:00
apiKey: "384a3bd2d50136c9dc8c8ddfe1b3a4b2",
2020-06-29 07:20:07 -07:00
indexName: "zmkfirmware",
},
2020-05-25 18:33:21 -07:00
},
presets: [
[
"@docusaurus/preset-classic",
{
googleAnalytics: {
trackingID: "UA-145201102-2",
anonymizeIP: true,
},
2020-05-25 18:33:21 -07:00
docs: {
// Removed (for now) until we have content for each level of the generated breadcrumbs
breadcrumbs: false,
2020-05-25 18:33:21 -07: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-12 21:19:59 -07:00
editUrl: "https://github.com/zmkfirmware/zmk/edit/main/docs/",
2020-05-25 18:33:21 -07:00
},
blog: {
showReadingTime: true,
// Please change this to your repo.
2020-08-12 21:19:59 -07:00
editUrl: "https://github.com/zmkfirmware/zmk/edit/main/docs/",
2023-11-03 23:20:42 -07:00
blogSidebarCount: "ALL",
2020-05-25 18:33:21 -07:00
},
theme: {
customCss: [
require.resolve("./src/css/custom.css"),
require.resolve("./src/css/codes.css"),
],
2020-05-25 18:33:21 -07:00
},
},
],
],
markdown: {
mdx1Compat: {
comments: false,
admonitions: false,
headingIds: true,
},
},
2020-05-25 18:33:21 -07:00
};