File size: 248 Bytes
b80fc11
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { auth } from "@dokploy/server/index";
import { toNodeHandler } from "better-auth/node";

// Disallow body parsing, we will parse it manually
export const config = { api: { bodyParser: false } };

export default toNodeHandler(auth.handler);