mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-27 09:32:20 -05:00
13 lines
230 B
TypeScript
13 lines
230 B
TypeScript
import { atom } from "jotai";
|
|
|
|
export const optionsAtom = atom({
|
|
email: true,
|
|
passkey: false,
|
|
socialProviders: ["google", "github"],
|
|
magicLink: false,
|
|
signUp: true,
|
|
label: true,
|
|
rememberMe: true,
|
|
forgetPassword: true,
|
|
});
|