mirror of
https://github.com/goauthentik/authentik
synced 2026-04-27 01:55:08 +02:00
* website: Flesh out version picker. Port 3.8 theme. * website: Update Dockerfile to include compose. * website: Flesh out branch override. Tidy list items.
22 lines
389 B
JavaScript
22 lines
389 B
JavaScript
/**
|
|
* @file Docusaurus theme plugin.
|
|
* @import { Plugin } from "@docusaurus/types";
|
|
*/
|
|
|
|
/**
|
|
* @returns {Plugin<void>}
|
|
*/
|
|
export default function docusaurusThemeAuthentik() {
|
|
return {
|
|
name: "docusaurus-theme-authentik",
|
|
|
|
getThemePath() {
|
|
return "./theme";
|
|
},
|
|
|
|
getTypeScriptThemePath() {
|
|
return "./theme";
|
|
},
|
|
};
|
|
}
|