Files
2026-03-18 13:34:41 +01:00

9 lines
245 B
TypeScript

import { createAuthClient } from 'better-auth/react'
import { magicLinkClient } from 'better-auth/client/plugins'
export const authClient = createAuthClient({
plugins: [magicLinkClient()],
})
export type { Session } from 'better-auth/types'