// @ts-check // Note: type annotations allow type checking and IDEs autocompletion require('dotenv').config() /** @type {import('@docusaurus/types').Config} */ const config = { title: 'Nimbus', url: 'https://nimbus.team/', baseUrl: '/', customFields: { ghostAPiKey: process.env.GHOST_API_KEY, }, markdown: { mermaid: true, }, // Even if you don't use internalization, 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: [ [ '@acid-info/logos-docusaurus-preset', /** @type {import('@acid-info/logos-docusaurus-preset').PluginOptions} */ ({ businessUnit: 'Nimbus', theme: { name: 'default', options: { customCss: [require.resolve('./src/css/custom.scss')], }, }, docs: { routeBasePath: '/', path: 'root-pages', }, }), ], ], themes: ['@docusaurus/theme-mermaid'], plugins: [ [ '@docusaurus/plugin-content-docs', { id: 'about', routeBasePath: '/about', path: 'about', }, ], ], themeConfig: /** @type {import('@acid-info/logos-docusaurus-preset').ThemeConfig} */ ({ colorMode: { defaultMode: 'dark', disableSwitch: false, }, navbar: { items: [ { type: 'search', }, { label: 'About', to: '/about', }, { label: 'Github', href: 'https://github.com/status-im', }, ], }, footer: { copyright: 'Nimbus @2023
All Rights Reserved.', links: [ { items: [ { href: 'https://twitter.com/ethnimbus', label: 'Twitter', }, { href: 'https://discord.gg/EP8DZnXu9y', label: 'Discord', }, { href: '/', label: 'Docs', }, { href: 'https://github.com/status-im', label: 'Github', }, ], }, { items: [ { href: '/', label: 'Contact us', }, { href: 'https://jobs.status.im/', label: 'Work with us', }, { href: '/terms', label: 'Terms & conditions', }, ], }, ], }, }), } module.exports = config