bc1f11a901
Co-Authored-By: Paperclip <noreply@paperclip.ing>
7 lines
226 B
TypeScript
7 lines
226 B
TypeScript
import { createAuthClient } from "better-auth/react";
|
|
|
|
export const authClient = createAuthClient({
|
|
baseURL: import.meta.env.VITE_API_URL ?? "",
|
|
});
|
|
|
|
export const { signIn, signOut, useSession, changePassword } = authClient; |