docs.sr2.uk/docusaurus.config.js

165 lines
4.9 KiB
JavaScript
Raw Normal View History

2025-11-05 16:55:07 +00:00
// @ts-check
// `@type` JSDoc annotations allow editor autocompletion and type checking
// (when paired with `@ts-check`).
// There are various equivalent ways to declare your Docusaurus config.
// See: https://docusaurus.io/docs/api/docusaurus-config
import {themes as prismThemes} from 'prism-react-renderer';
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'CDR Link',
tagline: 'A guide for agents, admins, and operators',
2025-11-05 16:55:07 +00:00
favicon: 'img/favicon.ico',
// Future flags, see https://docusaurus.io/docs/api/docusaurus-config#future
future: {
v4: true, // Improve compatibility with the upcoming Docusaurus v4
},
// Set the production url of your site here
url: 'https://docs.cdr.link',
2025-11-05 16:55:07 +00:00
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: '/',
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
// organizationName: 'facebook', // Usually your GitHub org/user name.
// projectName: 'docusaurus', // Usually your repo name.
2025-11-05 16:55:07 +00:00
onBrokenLinks: 'throw',
// Even if you don't use internationalization, you can use this field to set
// useful metadata like html lang. For example, if your site is Chinese, you
// may want to replace "en" with "zh-Hans".
i18n: {
defaultLocale: 'en',
locales: ['en'],
},
presets: [
[
'classic',
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
sidebarPath: './sidebars.js',
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
// editUrl:
// 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
2025-11-05 16:55:07 +00:00
},
// blog: {
// showReadingTime: true,
// feedOptions: {
// type: ['rss', 'atom'],
// xslt: true,
// },
// // Please change this to your repo.
// // Remove this to remove the "edit this page" links.
// // editUrl:
// // 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
// // Useful options to enforce blogging best practices
// onInlineTags: 'warn',
// onInlineAuthors: 'warn',
// onUntruncatedBlogPosts: 'warn',
// },
2025-11-05 16:55:07 +00:00
theme: {
customCss: './src/css/custom.css',
},
}),
],
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
// Replace with your project's social card
image: 'img/docusaurus-social-card.jpg',
colorMode: {
respectPrefersColorScheme: true,
},
navbar: {
title: 'CDR Link',
2025-11-05 16:55:07 +00:00
logo: {
alt: '',
src: 'img/link-logo.png',
// href: 'https://www.digiresilience.org/solutions/link/',
// target: '_self',
2025-11-05 16:55:07 +00:00
},
items: [
{
type: 'docSidebar',
sidebarId: 'docsSidebar',
2025-11-05 16:55:07 +00:00
position: 'left',
label: 'Documentation',
2025-11-05 16:55:07 +00:00
},
// {to: '/blog', label: 'Blog', position: 'left'},
// {
// href: 'https://github.com/facebook/docusaurus',
// label: 'GitHub',
// position: 'right',
// },
2025-11-05 16:55:07 +00:00
],
},
footer: {
style: 'dark',
links: [
{
title: 'Docs',
items: [
{
label: 'Agent Guide',
to: '/docs/category/agent-guide',
},
{
label: 'Admin Guide',
to: '/docs/category/admin-guide',
},
{
label: 'Operator Guide',
to: '/docs/category/operator-guide',
2025-11-05 16:55:07 +00:00
},
],
},
{
title: 'Policy',
2025-11-05 16:55:07 +00:00
items: [
{
label: 'Code of Practice',
href: 'https://digiresilience.org/about/code-practice/',
2025-11-05 16:55:07 +00:00
},
{
label: 'Code of Conduct',
href: 'https://digiresilience.org/about/code-conduct/',
2025-11-05 16:55:07 +00:00
},
],
},
{
title: 'More',
items: [
{
label: 'GitLab',
href: 'https://gitlab.com/digiresilience/link/',
2025-11-05 16:55:07 +00:00
},
],
},
],
copyright: `Copyright © 2021-${new Date().getFullYear()}. This documentation is made available to you under the terms of the Creative Commons Attribution 4.0 International licence.`,
2025-11-05 16:55:07 +00:00
},
prism: {
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
},
}),
markdown: {
mermaid: true,
},
themes: ['@docusaurus/theme-mermaid'],
2025-11-05 16:55:07 +00:00
};
export default config;