waku.org/docusaurus.config.js

132 lines
2.9 KiB
JavaScript

// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
require('dotenv').config()
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'Waku',
url: 'https://url',
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: 'Waku',
theme: {
name: 'default',
options: {
customCss: [require.resolve('./src/css/custom.scss')],
docs: {
default: {
sidebar: {
hide: true,
},
},
},
},
},
docs: {
routeBasePath: '/',
path: 'root-pages',
},
}),
],
],
plugins: [
[
'@docusaurus/plugin-content-docs',
{
id: 'about',
routeBasePath: '/about',
path: 'about',
},
],
[
'@acid-info/docusaurus-fathom',
{
siteId: 'BBYCC',
scriptUrl: 'https://fathom.status.im/tracker.js',
},
],
],
themeConfig:
/** @type {import('@acid-info/logos-docusaurus-preset').ThemeConfig} */
({
navbar: {
hideOnScroll: true,
items: [
{
type: 'search',
},
{
label: 'About',
to: '/about',
},
{
label: 'Docs',
href: 'https://docs.waku.org',
},
{
label: 'Github',
href: 'https://github.com/waku-org',
},
],
},
footer: {
copyright: 'Waku @2023<br/>All Rights Reserved.',
links: [
{
items: [
{
href: 'https://twitter.com/waku_org',
label: 'Twitter',
},
{
href: 'https://discord.gg/wc8gj26cwH',
label: 'Discord',
},
{
href: 'https://docs.waku.org',
label: 'Docs',
},
{
href: 'https://github.com/waku-org',
label: 'Github',
},
],
},
{
items: [
{
href: 'https://jobs.status.im/',
label: 'Work with us',
},
{
href: '/terms',
label: 'Terms & conditions',
},
],
},
],
},
}),
}
module.exports = config