add clerk as convex auth provider

This commit is contained in:
Nayan Sawyer
2025-06-17 12:07:13 -04:00
parent c18410e243
commit c519ee69a7
4 changed files with 61 additions and 7 deletions

8
convex/auth.config.ts Normal file
View File

@@ -0,0 +1,8 @@
export default {
providors: [
{
domain: process.env.NEXT_PUBLIC_CLERK_FRONTEND_API_URL,
applicationId: process.env.NEXTAUTH_ID,
}
]
}