1
0
mirror of https://github.com/actix/actix-website synced 2024-11-23 16:31:08 +01:00
actix-website/docusaurus.config.ts

101 lines
2.6 KiB
TypeScript
Raw Normal View History

import { Config } from "@docusaurus/types";
import type * as Preset from "@docusaurus/preset-classic";
2024-05-27 23:24:26 +02:00
import { themes as prismThemes } from "prism-react-renderer";
const draculaTheme = prismThemes.dracula;
const config: Config = {
2024-06-11 00:13:05 +02:00
title: "Actix Web",
2023-11-01 16:32:44 +01:00
tagline:
"Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust",
url: "https://actix.rs",
baseUrl: "/",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
favicon: "img/logo.png",
organizationName: "actix", // Usually your GitHub org/user name.
projectName: "actix-web", // Usually your repo name.
// https://docusaurus.io/docs/api/themes/@docusaurus/theme-mermaid
// https://docusaurus.io/docs/markdown-features/diagrams
markdown: {
mermaid: true,
},
themes: ["@docusaurus/theme-mermaid"],
themeConfig: {
navbar: {
2024-06-11 00:17:13 +02:00
title: "Actix Web",
logo: {
2023-11-01 16:32:44 +01:00
src: "img/logo-icon.png",
width: 32,
height: 32,
2024-06-11 00:17:13 +02:00
alt: "Actix Web Logo",
},
items: [
{
2023-11-01 16:32:44 +01:00
to: "docs",
activeBasePath: "docs",
label: "Documentation",
position: "left",
},
{
2023-11-01 16:32:44 +01:00
to: "community",
activeBasePath: "community",
label: "Community",
position: "left",
},
{
2023-11-01 16:32:44 +01:00
to: "code",
activeBasePath: "code",
label: "Code",
position: "left",
},
2024-06-09 02:59:57 +02:00
{
href: "https://discord.gg/NWpN5mmg3x",
position: "right",
className: "header-discord-link",
"aria-label": "Chat on Discord",
},
{
href: "https://github.com/actix/actix-web",
position: "right",
className: "header-github-link",
"aria-label": "GitHub repository",
},
],
},
footer: {
copyright: `Copyright © ${new Date().getFullYear()} The Actix Team`,
},
prism: {
// dracula is closest to docs.rs, where keywords are highlighted
theme: draculaTheme,
2024-05-27 23:24:26 +02:00
additionalLanguages: ["rust", "toml", "shell-session"],
2023-11-01 16:32:44 +01:00
defaultLanguage: "rust",
2023-05-09 11:23:21 +02:00
},
colorMode: {
respectPrefersColorScheme: true,
2023-11-01 16:32:44 +01:00
},
} satisfies Preset.ThemeConfig,
plugins: [
"docusaurus-plugin-sass",
require.resolve("docusaurus-lunr-search"),
],
presets: [
[
"classic",
{
docs: {
2023-11-01 16:32:44 +01:00
sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://github.com/actix/actix-website/edit/main/",
},
theme: {
2023-11-01 16:32:44 +01:00
customCss: require.resolve("./src/css/custom.css"),
},
} satisfies Preset.Options,
],
],
};
export default config;