We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf07eb1 commit 2180d64Copy full SHA for 2180d64
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