77 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.2 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",
 | |
|                 },
 | |
|             ],
 | |
|         },
 | |
|         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",
 | |
|                         },
 | |
|                     ],
 | |
|                 },
 | |
|             ],
 | |
|             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"),
 | |
|                 },
 | |
|             },
 | |
|         ],
 | |
|     ],
 | |
| };
 | 
