diff --git a/convex/auth.ts b/convex/auth.ts index 17092d6..cc42557 100644 --- a/convex/auth.ts +++ b/convex/auth.ts @@ -2,5 +2,10 @@ import Resend from "@auth/core/providers/resend"; import { convexAuth } from "@convex-dev/auth/server"; export const { auth, signIn, signOut, store } = convexAuth({ - providers: [Resend], + providers: [ + Resend({ + apiKey: process.env.AUTH_RESEND_KEY, + from: "no-reply@namesake.fyi", + }), + ], });