// @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', 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', // Set the // pathname under which your site is served // For GitHub pages deployment, it is often '//' 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. 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/', }, // 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', // }, 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', logo: { alt: '', src: 'img/link-logo.png', // href: 'https://www.digiresilience.org/solutions/link/', // target: '_self', }, items: [ { type: 'docSidebar', sidebarId: 'docsSidebar', position: 'left', label: 'Documentation', }, // {to: '/blog', label: 'Blog', position: 'left'}, // { // href: 'https://github.com/facebook/docusaurus', // label: 'GitHub', // position: 'right', // }, ], }, 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', }, ], }, { title: 'Policy', items: [ { label: 'Code of Practice', href: 'https://digiresilience.org/about/code-practice/', }, { label: 'Code of Conduct', href: 'https://digiresilience.org/about/code-conduct/', }, ], }, { title: 'More', items: [ { label: 'GitLab', href: 'https://gitlab.com/digiresilience/link/', }, ], }, ], 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.`, }, prism: { theme: prismThemes.github, darkTheme: prismThemes.dracula, }, }), markdown: { mermaid: true, }, themes: ['@docusaurus/theme-mermaid'], }; export default config;