2024-01-30 00:06:17 +01:00
|
|
|
export const nameOfTheGlobal = "kcContext";
|
2023-09-03 07:14:57 +02:00
|
|
|
export const keycloak_resources = "keycloak-resources";
|
|
|
|
export const resources_common = "resources-common";
|
|
|
|
export const lastKeycloakVersionWithAccountV1 = "21.1.2";
|
2024-01-30 00:06:17 +01:00
|
|
|
export const basenameOfTheKeycloakifyResourcesDir = "build";
|
2023-09-03 07:14:57 +02:00
|
|
|
|
|
|
|
export const themeTypes = ["login", "account"] as const;
|
2024-01-30 00:06:17 +01:00
|
|
|
export const accountV1ThemeName = "account-v1";
|
2023-09-03 07:14:57 +02:00
|
|
|
|
|
|
|
export type ThemeType = (typeof themeTypes)[number];
|
2024-02-23 19:15:59 +01:00
|
|
|
|
2024-05-15 05:14:01 +02:00
|
|
|
export const vitePluginSubScriptEnvNames = {
|
|
|
|
"runPostBuildScript": "KEYCLOAKIFY_RUN_POST_BUILD_SCRIPT",
|
|
|
|
"createResolvedViteConfig": "KEYCLOAKIFY_CREATE_RESOLVED_VITE_CONFIG"
|
|
|
|
};
|