From c6e751bb7aaac348328a96076ba19fc6db1b0321 Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Sat, 22 Nov 2025 05:35:09 -0800 Subject: [PATCH] convex auth fix --- convex/auth.config.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 convex/auth.config.ts diff --git a/convex/auth.config.ts b/convex/auth.config.ts new file mode 100644 index 0000000..f4eb564 --- /dev/null +++ b/convex/auth.config.ts @@ -0,0 +1,8 @@ +export default { + providers: [ + { + domain: process.env.CONVEX_SITE_URL, + applicationID: "convex", + }, + ], +};