File size: 219 Bytes
97ee7cb
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
const domain = process.env.CLERK_JWT_ISSUER_DOMAIN;
if (!domain) throw new Error('CLERK_JWT_ISSUER_DOMAIN is not set');

export default {
  providers: [
    {
      domain,
      applicationID: "convex",
    },
  ],
};