feat(auth): login, signup, email verification, Better Auth routes

This commit is contained in:
Arnaud
2026-07-01 08:09:37 +02:00
parent 5b40968c9d
commit fa2d797918
6 changed files with 364 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
import { auth } from "@/lib/auth/server";
import { toNextJsHandler } from "better-auth/next-js";
export const { GET, POST } = toNextJsHandler(auth);