UNPKG

keycloakify

Version:

Framework to create custom Keycloak UIs

13 lines (12 loc) 313 B
export type BuildContextLike = { projectBuildDirPath: string; assetsDirPath: string; urlPathname: string | undefined; bundler: "vite" | "webpack"; }; export declare function replaceImportsInJsCode(params: { jsCode: string; buildContext: BuildContextLike; }): { fixedJsCode: string; };