nimbus-site/docusaurus.config.js

145 lines
3.1 KiB
JavaScript
Raw Normal View History

2023-06-01 10:37:55 +00:00
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
require('dotenv').config()
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'Nimbus',
2023-06-02 16:27:56 +00:00
url: 'https://nimbus.team/',
2023-06-01 10:37:55 +00:00
baseUrl: '/',
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')],
2023-06-02 19:23:47 +00:00
docs: {
default: {
sidebar: {
hide: true,
},
},
},
2023-06-01 10:37:55 +00:00
},
},
docs: {
2023-06-02 16:27:56 +00:00
routeBasePath: '/',
path: 'root-pages',
2023-06-01 10:37:55 +00:00
},
2023-07-11 13:36:22 +00:00
og: {},
2023-06-01 10:37:55 +00:00
}),
],
],
2023-06-02 16:27:56 +00:00
plugins: [
[
'@docusaurus/plugin-content-docs',
{
id: 'about',
routeBasePath: '/about',
path: 'about',
},
],
2023-07-17 18:02:36 +00:00
[
'@docusaurus/plugin-content-docs',
{
id: 'docs',
routeBasePath: '/docs',
path: 'docs',
sidebarPath: 'docs/sidebars.js',
},
],
],
scripts: [
{
src: 'https://platform.twitter.com/widgets.js',
async: true,
},
2023-06-02 16:27:56 +00:00
],
2023-06-01 10:37:55 +00:00
themeConfig:
/** @type {import('@acid-info/logos-docusaurus-preset').ThemeConfig} */
({
2023-11-28 13:38:18 +00:00
colorMode: {
disableSwitch: false,
respectPrefersColorScheme: true,
},
2023-06-01 10:37:55 +00:00
navbar: {
items: [
{
type: 'search',
},
{
label: 'About',
to: '/about',
},
2023-07-17 18:02:36 +00:00
{
label: 'Docs',
to: '/docs',
},
2023-06-01 10:37:55 +00:00
{
label: 'Github',
href: 'https://github.com/status-im',
},
],
},
footer: {
copyright: 'Nimbus @2023<br/>All Rights Reserved.',
links: [
{
items: [
{
href: 'https://twitter.com/ethnimbus',
label: 'Twitter',
},
{
href: 'https://discord.gg/EP8DZnXu9y',
label: 'Discord',
},
{
2023-07-17 18:02:36 +00:00
to: '/docs',
2023-06-01 10:37:55 +00:00
label: 'Docs',
},
{
2023-06-02 16:27:56 +00:00
href: 'https://github.com/status-im',
2023-06-01 10:37:55 +00:00
label: 'Github',
},
],
},
{
items: [
{
href: 'https://jobs.status.im/',
label: 'Work with us',
},
{
2023-06-02 16:27:56 +00:00
href: '/terms',
2023-06-02 10:10:45 +00:00
label: 'Terms & conditions',
2023-06-01 10:37:55 +00:00
},
],
},
],
},
}),
}
module.exports = config