cloud.sr2.uk/docusaurus.config.js

171 lines
5.4 KiB
JavaScript
Raw Permalink 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 = {
2026-02-22 19:21:02 +00:00
title: 'SR2® Cloud',
tagline: 'A cloud for civil society',
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
2026-02-22 19:21:02 +00:00
url: 'https://docs.sr2.uk',
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: {
2026-02-22 19:21:02 +00:00
title: 'SR2® Cloud',
2025-11-05 16:55:07 +00:00
logo: {
alt: '',
2026-02-22 19:21:02 +00:00
src: 'img/sr2-logo.webp',
href: '/',
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: [
{
2026-02-22 19:21:02 +00:00
label: 'Link Helpdesk',
to: '/docs/link',
},
{
2026-02-22 19:21:02 +00:00
label: 'Web Mirrors',
to: '/docs/mirrors',
2025-11-05 16:55:07 +00:00
},
],
},
{
2026-02-23 19:09:21 +00:00
title: 'Policy',
2025-11-05 16:55:07 +00:00
items: [
2026-02-23 19:09:21 +00:00
{
label: 'Terms and Conditions',
href: 'https://www.sr2.uk/terms',
},
{
label: 'Privacy Policy',
href: 'https://www.sr2.uk/privacy',
},
{
label: 'Complaints Policy',
href: 'https://www.sr2.uk/complaints',
}
2025-11-05 16:55:07 +00:00
],
},
{
title: 'More',
items: [
2025-11-09 14:44:58 +00:00
{
2026-02-23 19:09:21 +00:00
label: 'SR2 Communications',
href: 'https://www.sr2.uk/',
},
{
label: 'Open Source',
2026-02-22 19:21:02 +00:00
href: 'https://guardianproject.dev/sr2/',
2025-11-05 16:55:07 +00:00
},
],
},
],
2026-02-23 19:09:21 +00:00
copyright: `
<a href="https://cloud.sr2.uk/">SR2 Cloud Documentation</a> © 2021-${new Date().getFullYear()} is licensed under <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a><img src="https://mirrors.creativecommons.org/presskit/icons/cc.svg" alt="" style="max-width: 1em;max-height:1em;margin-left: .2em;"><img src="https://mirrors.creativecommons.org/presskit/icons/by.svg" alt="" style="max-width: 1em;max-height:1em;margin-left: .2em;">.
<br>SR2® and SR2 Communications® are registered trademarks of SR2 Communications Limited, a company registered in Scotland, number SC692687.`
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;