86 lines
2.6 KiB
JavaScript
86 lines
2.6 KiB
JavaScript
module.exports = {
|
|
title: "authentik",
|
|
tagline: "Making authentication simple.",
|
|
url: "https://goauthentik.io",
|
|
baseUrl: "/",
|
|
onBrokenLinks: "throw",
|
|
favicon: "img/icon.png",
|
|
organizationName: "BeryJu",
|
|
projectName: "authentik",
|
|
themeConfig: {
|
|
navbar: {
|
|
title: "authentik",
|
|
logo: {
|
|
alt: "authentik logo",
|
|
src: "img/icon_left_brand.svg",
|
|
},
|
|
items: [
|
|
{
|
|
to: "docs/",
|
|
activeBasePath: "docs",
|
|
label: "Docs",
|
|
position: "left",
|
|
},
|
|
{
|
|
href: "https://github.com/beryju/authentik",
|
|
label: "GitHub",
|
|
position: "right",
|
|
},
|
|
{
|
|
href: "https://discord.gg/jg33eMhnj6",
|
|
label: "Discord",
|
|
position: "right",
|
|
},
|
|
],
|
|
},
|
|
footer: {
|
|
links: [
|
|
{
|
|
title: "Docs",
|
|
items: [
|
|
{
|
|
label: "Documentation",
|
|
to: "docs/",
|
|
},
|
|
{
|
|
label: "Installations",
|
|
to: "docs/installation/index",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "More",
|
|
items: [
|
|
{
|
|
label: "GitHub",
|
|
href: "https://github.com/beryju/authentik",
|
|
},
|
|
{
|
|
label: "Discord",
|
|
href: "https://discord.gg/jg33eMhnj6",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
copyright: `Copyright © ${new Date().getFullYear()} BeryJu.org. Built with Docusaurus.`,
|
|
},
|
|
colorMode: {
|
|
respectPrefersColorScheme: true,
|
|
},
|
|
},
|
|
presets: [
|
|
[
|
|
"@docusaurus/preset-classic",
|
|
{
|
|
docs: {
|
|
sidebarPath: require.resolve("./sidebars.js"),
|
|
editUrl: "https://github.com/beryju/authentik/edit/master/website/",
|
|
},
|
|
theme: {
|
|
customCss: require.resolve("./src/css/custom.css"),
|
|
},
|
|
},
|
|
],
|
|
],
|
|
};
|