keycloakifyBuildDirPath was non absolute
This commit is contained in:
parent
8ef633d7ef
commit
dc1d4a66f4
@ -128,7 +128,10 @@ export function readBuildOptions(params: { processArgv: string[] }): BuildOption
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return resolvedViteConfig?.buildDir === undefined ? "build_keycloak" : `${resolvedViteConfig.buildDir}_keycloak`;
|
return pathJoin(
|
||||||
|
reactAppRootDirPath,
|
||||||
|
resolvedViteConfig?.buildDir === undefined ? "build_keycloak" : `${resolvedViteConfig.buildDir}_keycloak`
|
||||||
|
);
|
||||||
})(),
|
})(),
|
||||||
"publicDirPath": (() => {
|
"publicDirPath": (() => {
|
||||||
webpack: {
|
webpack: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user