Skip to content

Commit

Permalink
fix(config): update nuxt config to include correct URIs for IDP endpo…
Browse files Browse the repository at this point in the history
…ints
  • Loading branch information
brucetony committed Sep 21, 2024
1 parent 69346cc commit 6bf5fae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ export default defineNuxtConfig({
process.env.NUXT_PUBLIC_BASE_URL + "/auth/keycloak/callback",
authorizationUrl:
process.env.NUXT_OIDC_PROVIDERS_KEYCLOAK_AUTHORIZATION_URL ||
process.env.KEYCLOAK_LOGIN_URL + "/protocol/openid-connect/auth",
process.env.KEYCLOAK_LOGIN_URL + "/realms/flame/protocol/openid-connect/auth",
tokenUrl:
process.env.NUXT_OIDC_PROVIDERS_KEYCLOAK_TOKEN_URL ||
process.env.KEYCLOAK_SERVICE_URL + "/protocol/openid-connect/token",
process.env.KEYCLOAK_SERVICE_URL + "/realms/flame/protocol/openid-connect/auth",
userinfoUrl:
process.env.NUXT_OIDC_PROVIDERS_KEYCLOAK_USERINFO_URL ||
process.env.KEYCLOAK_SERVICE_URL +
"/protocol/openid-connect/userinfo",
"/realms/flame/protocol/openid-connect/auth",
exposeAccessToken: true,
pkce: false,
},
Expand Down

0 comments on commit 6bf5fae

Please sign in to comment.