mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 12:27:44 +00: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,
|
|
});
|