// @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: 'SR2® Cloud', tagline: 'A cloud for civil society', 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.sr2.uk', // 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: 'SR2® Cloud', logo: { alt: '', src: 'img/sr2-logo.webp', href: '/', 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: 'Link Helpdesk', to: '/docs/link', }, { label: 'Web Mirrors', to: '/docs/mirrors', }, ], }, { title: '2nd Column', items: [ ], }, { title: 'More', items: [ { label: 'Git', href: 'https://guardianproject.dev/sr2/', }, ], }, ], copyright: `Copyright © 2021-${new Date().getFullYear()} SR2 Communications Limited.
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;