mirror of
https://github.com/MatthewL246/pretendo-docker.git
synced 2026-04-13 20:35:48 -05:00
71 lines
1.9 KiB
TypeScript
71 lines
1.9 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 github = {
|
|
username: "MatthewL246",
|
|
repo: "pretendo-docker",
|
|
};
|
|
|
|
const config: Config = {
|
|
title: "Pretendo Docker Documentation",
|
|
tagline: "An unofficial Docker Compose setup for self-hosting a Pretendo Network server.",
|
|
favicon: "img/favicon.ico",
|
|
|
|
// GitHub Pages deployment configuration
|
|
url: `https://${github.username.toLowerCase()}.github.io`,
|
|
baseUrl: `/${github.repo}/`,
|
|
organizationName: github.username,
|
|
projectName: github.repo,
|
|
|
|
onBrokenLinks: "throw",
|
|
onBrokenMarkdownLinks: "warn",
|
|
|
|
i18n: {
|
|
defaultLocale: "en",
|
|
locales: ["en"],
|
|
},
|
|
|
|
presets: [
|
|
[
|
|
"classic",
|
|
{
|
|
docs: {
|
|
routeBasePath: "/",
|
|
sidebarPath: "./sidebars.ts",
|
|
editUrl: `https://github.com/${github.username}/${github.repo}/tree/main/docs/`,
|
|
},
|
|
blog: false,
|
|
pages: false,
|
|
theme: {
|
|
customCss: "./src/css/custom.css",
|
|
},
|
|
} satisfies Preset.Options,
|
|
],
|
|
],
|
|
|
|
themeConfig: {
|
|
navbar: {
|
|
title: "Pretendo Docker Documentation",
|
|
logo: {
|
|
alt: "Docusaurus Logo",
|
|
src: "img/logo.svg",
|
|
},
|
|
items: [
|
|
{
|
|
href: `https://github.com/${github.username}/${github.repo}`,
|
|
label: "GitHub",
|
|
position: "right",
|
|
},
|
|
],
|
|
},
|
|
prism: {
|
|
additionalLanguages: ["bash"],
|
|
theme: prismThemes.github,
|
|
darkTheme: prismThemes.dracula,
|
|
},
|
|
} satisfies Preset.ThemeConfig,
|
|
};
|
|
|
|
export default config;
|