16 lines
297 B
TypeScript
16 lines
297 B
TypeScript
"use client"
|
|
|
|
import { createAuthClient } from "better-auth/react"
|
|
|
|
export const authClient = createAuthClient({
|
|
baseURL: process.env.NEXT_PUBLIC_SITE_URL || "http://localhost:3000"
|
|
})
|
|
|
|
export const {
|
|
signIn,
|
|
signUp,
|
|
signOut,
|
|
useSession,
|
|
getSession,
|
|
changePassword
|
|
} = authClient |