mirror of
https://github.com/plexusorg/Website.git
synced 2024-12-22 09:57:37 +00:00
116 lines
2.7 KiB
TypeScript
116 lines
2.7 KiB
TypeScript
|
import {themes as prismThemes} from 'prism-react-renderer';
|
||
|
import type {Config} from '@docusaurus/types';
|
||
|
import type * as Preset from '@docusaurus/preset-classic';
|
||
|
|
||
|
const config: Config = {
|
||
|
title: 'Plex',
|
||
|
tagline: 'Welcome to the website and documentation for Plex!',
|
||
|
favicon: 'img/favicon.ico',
|
||
|
|
||
|
url: 'https://docs.plex.us.org',
|
||
|
baseUrl: '/',
|
||
|
|
||
|
organizationName: 'plexusorg', // Usually your GitHub org/user name.
|
||
|
projectName: 'Website', // Usually your repo name.
|
||
|
|
||
|
onBrokenLinks: 'throw',
|
||
|
onBrokenMarkdownLinks: 'warn',
|
||
|
|
||
|
i18n: {
|
||
|
defaultLocale: 'en',
|
||
|
locales: ['en'],
|
||
|
},
|
||
|
|
||
|
presets: [
|
||
|
[
|
||
|
'classic',
|
||
|
{
|
||
|
docs: {
|
||
|
sidebarPath: './sidebars.ts',
|
||
|
editUrl:
|
||
|
'https://github.com/plexusorg/Website/tree/master',
|
||
|
},
|
||
|
theme: {
|
||
|
customCss: './src/css/custom.css',
|
||
|
},
|
||
|
} satisfies Preset.Options,
|
||
|
],
|
||
|
],
|
||
|
|
||
|
themeConfig: {
|
||
|
image: 'img/docusaurus-social-card.jpg',
|
||
|
navbar: {
|
||
|
title: 'Plex',
|
||
|
logo: {
|
||
|
alt: 'Plex Logo',
|
||
|
src: 'img/plexlogo.png',
|
||
|
},
|
||
|
items: [
|
||
|
{
|
||
|
type: 'docSidebar',
|
||
|
sidebarId: 'tutorialSidebar',
|
||
|
position: 'left',
|
||
|
label: 'Tutorial',
|
||
|
},
|
||
|
{to: '/blog', label: 'Blog', position: 'left'},
|
||
|
{
|
||
|
href: 'https://github.com/facebook/docusaurus',
|
||
|
label: 'GitHub',
|
||
|
position: 'right',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
footer: {
|
||
|
style: 'dark',
|
||
|
links: [
|
||
|
{
|
||
|
title: 'Docs',
|
||
|
items: [
|
||
|
{
|
||
|
label: 'Tutorial',
|
||
|
to: '/docs/intro',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
{
|
||
|
title: 'Community',
|
||
|
items: [
|
||
|
{
|
||
|
label: 'Stack Overflow',
|
||
|
href: 'https://stackoverflow.com/questions/tagged/docusaurus',
|
||
|
},
|
||
|
{
|
||
|
label: 'Discord',
|
||
|
href: 'https://discordapp.com/invite/docusaurus',
|
||
|
},
|
||
|
{
|
||
|
label: 'X',
|
||
|
href: 'https://x.com/docusaurus',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
{
|
||
|
title: 'More',
|
||
|
items: [
|
||
|
{
|
||
|
label: 'Blog',
|
||
|
to: '/blog',
|
||
|
},
|
||
|
{
|
||
|
label: 'GitHub',
|
||
|
href: 'https://github.com/facebook/docusaurus',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
],
|
||
|
copyright: `Copyright © ${new Date().getFullYear()} Plexus Development. Symbols from <a href="https://fontawesome.com/license">FontAwesome</a>. Built with Docusaurus.`,
|
||
|
},
|
||
|
prism: {
|
||
|
theme: prismThemes.github,
|
||
|
darkTheme: prismThemes.dracula,
|
||
|
},
|
||
|
} satisfies Preset.ThemeConfig,
|
||
|
};
|
||
|
|
||
|
export default config;
|