UNPKG

create-unstack

Version:

CLI tool to scaffold a modern Next.js app with TailwindCSS, HeroUI, and optional authentication & MongoDB

9 lines (7 loc) 241 B
import { betterAuth } from "better-auth"; import { mongodbAdapter } from "better-auth/adapters/mongodb"; import { client } from "@/lib/db"; const db = client.db("auth"); export const auth = betterAuth({ database: mongodbAdapter(db) });