We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a0052d commit e8b4d94Copy full SHA for e8b4d94
2 files changed
web/src/core/adapters/oidc/oidc.ts
@@ -86,7 +86,6 @@ export async function createOidc<AutoLogin extends boolean>(
86
return authorizationUrl;
87
},
88
idleSessionLifetimeInSeconds,
89
- homeUrl: import.meta.env.BASE_URL,
90
debugLogs: enableDebugLogs,
91
autoLogin
92
});
web/src/main.tsx
@@ -21,7 +21,8 @@ if (import.meta.env.DEV) {
21
const { oidcEarlyInit } = await import("oidc-spa/entrypoint");
22
23
const { shouldLoadApp } = oidcEarlyInit({
24
- safeMode: true
+ safeMode: true,
25
+ BASE_URL: import.meta.env.BASE_URL
26
27
28
if (!shouldLoadApp) {
0 commit comments