Files
standardnotes-app-web/packages/docs/docusaurus.config.js
2023-01-10 13:13:12 -06:00

213 lines
5.3 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
const math = require('remark-math');
const katex = require('rehype-katex');
module.exports = {
title: 'Standard Notes Documentation',
tagline: 'Extend Your Notes App',
url: 'https://docs.standardnotes.com',
baseUrl: '/',
favicon: 'img/favicon.png',
organizationName: 'standardnotes',
projectName: 'docs',
themeConfig: {
algolia: {
apiKey: 'f2899fea0369aeea336963e48a0e46dc',
indexName: 'standardnotes',
},
colorMode: {
defaultMode: 'light',
disableSwitch: false,
respectPrefersColorScheme: true,
},
hideableSidebar: true,
image: 'img/logo.png',
navbar: {
hideOnScroll: true,
title: 'Standard Notes',
logo: {
alt: 'Standard Notes Logo',
src: 'img/logo.png',
},
items: [
{
label: 'Developers',
position: 'left',
items: [
{
to: '/self-hosting/getting-started',
label: 'Self-Host a Sync Server',
position: 'left',
},
{
to: '/specification/encryption',
label: 'Client Encryption API',
position: 'left',
},
{
to: '/extensions/intro',
label: 'Build an Extension',
position: 'left',
},
{
to: '/extensions/editors',
label: 'Build an Editor',
position: 'left',
},
],
},
{
href: 'https://app.standardnotes.com',
label: 'Standard Notes Web App',
position: 'right',
},
{
href: 'https://standardnotes.com',
label: 'Our Website — Encrypted Notes App',
position: 'right',
},
{
href: 'https://standardnotes.com/help',
label: 'Help',
position: 'right',
},
{
href: 'https://standardnotes.com/blog',
label: 'Privacy & Security Blog',
position: 'right',
},
{
href: 'https://github.com/standardnotes',
label: 'GitHub',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [
{
title: 'Developers',
items: [
{
label: 'Self-Host a Sync Server',
to: '/self-hosting/getting-started',
},
{
label: 'Build an Extension',
to: '/extensions/intro',
},
{
label: 'Encryption Specification',
to: '/specification/encryption',
},
],
},
{
title: 'Community',
items: [
{
label: 'Join our Discord',
href: 'https://standardnotes.com/discord',
},
{
label: 'Community Forum',
href: 'https://standardnotes.com/forum',
},
{
label: 'Listed Blogging Platform',
href: 'https://listed.to',
},
],
},
{
title: 'Support',
items: [
{
label: 'Help & Contact',
href: 'https://standardnotes.com/help',
},
{
label: 'Twitter',
href: 'https://twitter.com/standardnotes',
},
{
label: 'Reddit',
href: 'https://reddit.com/r/standardnotes',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} <a href="https://standardnotes.com">Standard Notes</a>`,
},
},
stylesheets: [
{
href: '/katex/v0.12.0/katex.min.css',
type: 'text/css',
integrity:
'sha384-AfEj0r4/OFrOo5t7NnNe46zW/tFgW6x/bCJG8FqQCEo3+Aro6EYUG4+cU+KJWu/X',
crossorigin: 'anonymous',
},
],
scripts: [
{
src: 'https://plausible.standardnotes.com/js/plausible.js',
'data-domain': 'docs.standardnotes.com',
defer: true,
},
],
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl:
'https://github.com/standardnotes/app/blob/main/packages/docs/',
routeBasePath: '/',
remarkPlugins: [math],
rehypePlugins: [katex],
showLastUpdateTime: true,
},
theme: {
customCss: require.resolve('./src/css/custom.scss'),
},
},
],
],
plugins: [
[
'@docusaurus/plugin-client-redirects',
{
redirects: [
{
to: '/extensions/intro',
from: [
'/extensions/introduction',
'/extensions/components',
'/extensions',
'/extensions/intro-to-extensions',
],
},
{
to: '/usage/filesafe/aws',
from: ['/filesafe/aws'],
},
{
to: '/self-hosting/getting-started',
from: [
'/self-hosting',
'/self-hosting/getting-started-with-self-hosting',
],
},
{
to: '/specification/encryption',
from: ['/specification/'],
},
],
},
],
'docusaurus-plugin-sass',
],
};