From 5537c481ce81e7c9787bf45ac2ef560aaeb747c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jona=20Kl=C3=A4=C3=9F?= Date: Sun, 14 Apr 2024 20:57:39 +0200 Subject: [PATCH] Bug fixed. Now works :) --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 4e0d4dc..d66ca6e 100644 --- a/src/main.ts +++ b/src/main.ts @@ -21,7 +21,7 @@ app.use(createPinia()); console.log("Keycloak Client ID: "+process.env.KEYCLOAK_CLIENT_ID); const keycloakConfig: KeycloakConfig = { - url: 'http://localhost:'+ process.env.PORT_KEYCLOAK as string+'/auth', + url: 'http://localhost:'+ process.env.PORT_KEYCLOAK as string+'/', realm: process.env.KEYCLOAK_REALM as string, clientId: process.env.KEYCLOAK_CLIENT_ID as string, };