1
0
forked from baron/baron-sso

SSO 로그인 방식을 팝업 기반으로 변경

This commit is contained in:
2026-02-25 09:09:18 +09:00
parent 19f5096470
commit 3423178250
4 changed files with 20 additions and 5 deletions

View File

@@ -9,6 +9,7 @@ export const oidcConfig: AuthProviderProps = {
response_type: "code",
scope: "openid offline_access profile email", // offline_access for refresh token
post_logout_redirect_uri: window.location.origin,
popup_redirect_uri: `${window.location.origin}/auth/callback`,
userStore: new WebStorageStateStore({ store: window.localStorage }),
automaticSilentRenew: true,
};