© 2026 Hedgehog Software, LLC
import type { NextApiRequest, NextApiResponse } from "next" import NextAuth from "next-auth" export default async function auth(req: NextApiRequest, res: NextApiResponse) { if(req.method === "HEAD") { return res.status(200) } ... }