We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58132a7 commit 5231761Copy full SHA for 5231761
1 file changed
src/lib/auth/auth.ts
@@ -1,4 +1,4 @@
1
-import { type Auth, type BetterAuthOptions, betterAuth } from "better-auth";
+import { betterAuth } from "better-auth";
2
import { genericOAuth } from "better-auth/plugins";
3
import {
4
BASE_URL,
@@ -63,7 +63,7 @@ export async function getOidcDiscovery(): Promise<OidcDiscoveryResponse | null>
63
// Better Auth Configuration
64
// ============================================================================
65
66
-export const auth: Auth<BetterAuthOptions> = betterAuth({
+export const auth = betterAuth({
67
debug: !IS_PRODUCTION,
68
secret: BETTER_AUTH_SECRET,
69
baseURL: BASE_URL,
0 commit comments