Website/docusaurus.config.js

109 lines
2.7 KiB
JavaScript

// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
const lightCodeTheme = require('prism-react-renderer/themes/github');
const darkCodeTheme = require('prism-react-renderer/themes/dracula');
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'Plex Docs',
tagline: 'The official documentation for Plex',
url: 'https://docs.plex.us.org',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.ico',
organizationName: 'PlexDevelopment', // Usually your GitHub org/user name.
projectName: 'docs', // Usually your repo name.
presets: [
[
'classic',
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
sidebarPath: require.resolve('./sidebars.js'),
// Please change this to your repo.
editUrl: 'https://github.com/PlexDevelopment/docs',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
}),
],
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
navbar: {
title: 'Plex',
logo: {
alt: 'Plex Logo',
src: 'img/logo.svg',
},
items: [
{
type: 'doc',
docId: 'intro',
position: 'left',
label: 'Getting Started',
},
{
type: 'doc',
docId: 'compiling',
position: 'left',
label: 'Compiling',
},
],
},
footer: {
style: 'dark',
links: [
{
title: 'Docs',
items: [
{
label: 'Getting Started',
to: '/docs/intro',
},
{
label: 'Compiling',
to: '/docs/compiling',
}
],
},
{
title: 'Community',
items: [
{
label: 'Forums',
href: 'https://forum.plex.us.org',
},
{
label: 'Discord',
href: 'https://discord.gg/HZsdUnsRKc',
},
],
},
{
title: 'More',
items: [
{
label: 'GitHub',
href: 'https://github.com/PlexDevelopment',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Plex. Symbols from <a href="https://fontawesome.com/license">FontAwesome</a>. Built with Docusaurus.`,
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
},
}),
};
module.exports = config;