🛂 Removes `/auth` from KC path (#564)

This commit is contained in:
Alicia Sykes 2022-03-26 19:36:48 +00:00
parent 1f3ed135de
commit fd2b3d831c
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ class KeycloakAuth {
const { auth } = getAppConfig();
const { serverUrl, realm, clientId } = auth.keycloak;
const initOptions = {
url: `${serverUrl}/auth`, realm, clientId, onLoad: 'login-required',
url: `${serverUrl}`, realm, clientId, onLoad: 'login-required',
};
this.keycloakClient = Keycloak(initOptions);