mirror of
https://github.com/get-drexa/drive.git
synced 2025-11-30 21:41:39 +00:00
23 lines
494 B
TypeScript
23 lines
494 B
TypeScript
const clientId = process.env.WORKOS_CLIENT_ID
|
|
|
|
const authConfig = {
|
|
providers: [
|
|
{
|
|
type: "customJwt",
|
|
issuer: `https://api.workos.com/`,
|
|
algorithm: "RS256",
|
|
jwks: `https://api.workos.com/sso/jwks/${clientId}`,
|
|
applicationID: clientId,
|
|
},
|
|
{
|
|
type: "customJwt",
|
|
issuer: `https://api.workos.com/user_management/${clientId}`,
|
|
algorithm: "RS256",
|
|
jwks: `https://api.workos.com/sso/jwks/${clientId}`,
|
|
applicationID: clientId,
|
|
},
|
|
],
|
|
}
|
|
|
|
export default authConfig
|