This commit is contained in:
garronej 2023-07-26 19:33:38 +02:00
parent a8ce9da9ee
commit 4140ca6fbd

View File

@ -230,7 +230,7 @@ export async function generateTheme(params: {
fs.writeFileSync( fs.writeFileSync(
pathJoin(themeDirPath, "theme.properties"), pathJoin(themeDirPath, "theme.properties"),
Buffer.from(["parent=keycloak", ...(buildOptions.extraThemeProperties ?? [])].join("\n\n"), "utf8") Buffer.from([`parent=keycloak${themeType === "account" ? ".v2" : ""}`, ...(buildOptions.extraThemeProperties ?? [])].join("\n\n"), "utf8")
); );
} }