mirror of
https://github.com/elder-plinius/LEAKHUB.git
synced 2026-02-12 16:52:53 +00:00
11 lines
194 B
TypeScript
11 lines
194 B
TypeScript
import { AuthConfig } from "convex/server";
|
|
|
|
export default {
|
|
providers: [
|
|
{
|
|
domain: process.env.CONVEX_SITE_URL!,
|
|
applicationID: "convex",
|
|
},
|
|
],
|
|
} satisfies AuthConfig;
|