2022-07-16 11:59:20 +02:00
|
|
|
const path = require('path');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
title: 'Actix',
|
|
|
|
tagline: 'Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust',
|
|
|
|
url: 'https://actix.rs',
|
2022-07-16 12:06:27 +02:00
|
|
|
baseUrl: '/',
|
2022-07-16 11:59:20 +02:00
|
|
|
onBrokenLinks: 'throw',
|
|
|
|
onBrokenMarkdownLinks: 'warn',
|
|
|
|
favicon: 'img/logo.png',
|
|
|
|
organizationName: 'actix', // Usually your GitHub org/user name.
|
|
|
|
projectName: 'actix-web', // Usually your repo name.
|
|
|
|
themeConfig: {
|
|
|
|
navbar: {
|
|
|
|
title: 'Actix',
|
|
|
|
logo: {
|
|
|
|
alt: 'Actix Logo',
|
2023-05-09 11:25:52 +02:00
|
|
|
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: [
|
|
|
|
{
|
|
|
|
to: 'docs',
|
|
|
|
activeBasePath: 'docs',
|
|
|
|
label: 'Documentation',
|
|
|
|
position: 'left',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
to: 'community',
|
|
|
|
activeBasePath: 'community',
|
|
|
|
label: 'Community',
|
|
|
|
position: 'left',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
to: 'code',
|
|
|
|
activeBasePath: 'code',
|
|
|
|
label: 'Code',
|
|
|
|
position: 'left',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
footer: {
|
|
|
|
copyright: `Copyright © ${new Date().getFullYear()} The Actix Team`,
|
|
|
|
},
|
|
|
|
prism: {
|
|
|
|
// dracula is closest to docs.rs, where keywords are highlighted
|
|
|
|
theme: require('prism-react-renderer/themes/dracula'),
|
|
|
|
additionalLanguages: ['rust', 'toml'],
|
|
|
|
defaultLanguage: 'rust'
|
2023-05-09 11:23:21 +02:00
|
|
|
},
|
|
|
|
colorMode: {
|
|
|
|
respectPrefersColorScheme: true,
|
2022-07-16 11:59:20 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
plugins: ["docusaurus-plugin-sass"],
|
|
|
|
presets: [
|
|
|
|
[
|
|
|
|
'@docusaurus/preset-classic',
|
|
|
|
{
|
|
|
|
docs: {
|
|
|
|
sidebarPath: require.resolve('./sidebars.js'),
|
|
|
|
editUrl:
|
|
|
|
'https://github.com/actix/actix-website/edit/master/',
|
|
|
|
},
|
|
|
|
theme: {
|
|
|
|
customCss: require.resolve('./src/css/custom.css'),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
],
|
|
|
|
};
|