Add post-logout redirect URI to OIDC config

Redirects users back to the app home page after SSO logout instead of
leaving them stranded on the Authentik end-session page.
This commit is contained in:
Viktor Barzin 2026-02-07 10:19:08 +00:00
parent a8b7eace48
commit c76a7ac028
No known key found for this signature in database
GPG key ID: 0EB088298288D958

View file

@ -4,6 +4,7 @@ export const oidcConfig = {
authority: "https://authentik.viktorbarzin.me/application/o/wrongmove/",
client_id: "5AJKRgcdgVm1OyApBzFkadDFfStW9a555zwv2MOe",
redirect_uri: import.meta.env.MODE === 'development' ? "https://localhost/callback" : "https://wrongmove.viktorbarzin.me/callback",
post_logout_redirect_uri: import.meta.env.MODE === 'development' ? "https://localhost/" : "https://wrongmove.viktorbarzin.me/",
userStore: new WebStorageStateStore({ store: window.localStorage }),
response_type: 'code', // PKCE flow (recommended for SPAs)
scope: 'openid profile email', // Requested scopes