We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4eb6f4a commit e33fca5Copy full SHA for e33fca5
src/lib/auth/constants.ts
@@ -6,7 +6,8 @@
6
/**
7
* OIDC Provider ID (e.g., "oidc", "okta")
8
* Must use NEXT_PUBLIC_ prefix as it's needed both server-side (auth.ts) and client-side (signin page).
9
- * Not sensitive data - it's just an identifier.
+ * Note: This exposes the provider name to the client, which is generally acceptable
10
+ * but does reveal infrastructure details.
11
*/
12
export const OIDC_PROVIDER_ID =
13
process.env.NEXT_PUBLIC_OIDC_PROVIDER_ID || "oidc";
0 commit comments