10 lines
379 B
TypeScript
10 lines
379 B
TypeScript
import { createAuthClient } from 'better-auth/react';
|
|
import { adminClient, genericOAuthClient } from 'better-auth/client/plugins';
|
|
|
|
export const authClient = createAuthClient({
|
|
baseURL: process.env['NEXT_PUBLIC_GATEWAY_URL'] ?? 'http://localhost:14242',
|
|
plugins: [adminClient(), genericOAuthClient()],
|
|
});
|
|
|
|
export const { useSession, signIn, signUp, signOut } = authClient;
|