2023-11-01 16:32:44 +01:00
|
|
|
const path = require("path");
|
2022-07-16 11:59:20 +02:00
|
|
|
|
|
|
|
module.exports = {
|
2023-11-01 16:32:44 +01:00
|
|
|
title: "Actix",
|
|
|
|
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.
|
2022-07-16 11:59:20 +02:00
|
|
|
themeConfig: {
|
|
|
|
navbar: {
|
2023-11-01 16:32:44 +01:00
|
|
|
title: "Actix",
|
2022-07-16 11:59:20 +02:00
|
|
|
logo: {
|
2023-11-01 16:32:44 +01:00
|
|
|
alt: "Actix Logo",
|
|
|
|
src: "img/logo-icon.png",
|
2023-05-09 11:22:55 +02:00
|
|
|
width: 32,
|
|
|
|
height: 32,
|
2022-07-16 11:59:20 +02:00
|
|
|
},
|
|
|
|
items: [
|
|
|
|
{
|
2023-11-01 16:32:44 +01:00
|
|
|
to: "docs",
|
|
|
|
activeBasePath: "docs",
|
|
|
|
label: "Documentation",
|
|
|
|
position: "left",
|
2022-07-16 11:59:20 +02:00
|
|
|
},
|
|
|
|
{
|
2023-11-01 16:32:44 +01:00
|
|
|
to: "community",
|
|
|
|
activeBasePath: "community",
|
|
|
|
label: "Community",
|
|
|
|
position: "left",
|
2022-07-16 11:59:20 +02:00
|
|
|
},
|
|
|
|
{
|
2023-11-01 16:32:44 +01:00
|
|
|
to: "code",
|
|
|
|
activeBasePath: "code",
|
|
|
|
label: "Code",
|
|
|
|
position: "left",
|
2022-07-16 11:59:20 +02:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
footer: {
|
|
|
|
copyright: `Copyright © ${new Date().getFullYear()} The Actix Team`,
|
|
|
|
},
|
|
|
|
prism: {
|
|
|
|
// dracula is closest to docs.rs, where keywords are highlighted
|
2023-11-01 16:32:44 +01:00
|
|
|
theme: require("prism-react-renderer/themes/dracula"),
|
|
|
|
additionalLanguages: ["rust", "toml"],
|
|
|
|
defaultLanguage: "rust",
|
2023-05-09 11:23:21 +02:00
|
|
|
},
|
|
|
|
colorMode: {
|
|
|
|
respectPrefersColorScheme: true,
|
2023-11-01 16:32:44 +01:00
|
|
|
},
|
2022-07-16 11:59:20 +02:00
|
|
|
},
|
|
|
|
plugins: ["docusaurus-plugin-sass"],
|
|
|
|
presets: [
|
|
|
|
[
|
2023-11-01 16:32:44 +01:00
|
|
|
"@docusaurus/preset-classic",
|
2022-07-16 11:59:20 +02:00
|
|
|
{
|
|
|
|
docs: {
|
2023-11-01 16:32:44 +01:00
|
|
|
sidebarPath: require.resolve("./sidebars.js"),
|
|
|
|
editUrl: "https://github.com/actix/actix-website/edit/master/",
|
2022-07-16 11:59:20 +02:00
|
|
|
},
|
|
|
|
theme: {
|
2023-11-01 16:32:44 +01:00
|
|
|
customCss: require.resolve("./src/css/custom.css"),
|
2022-07-16 11:59:20 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
],
|
|
|
|
};
|