authelia/web/src/utils/BasePath.ts

6 lines
134 B
TypeScript
Raw Normal View History

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