authelia/web/src/utils/BasePath.ts

5 lines
133 B
TypeScript
Raw Normal View History

import { getEmbeddedVariable } from "./Configuration";
export function getBasePath() {
return getEmbeddedVariable("basepath");
}