import { NextResponse, type NextRequest } from "next/server"; /** * Auth proxy is implemented as app/api/auth/[...path]/route.ts (not here). * Middleware only needs to exist for other portal concerns later. * Keep this pass-through so we never double-proxy or drop bodies. */ export function middleware(_req: NextRequest) { return NextResponse.next(); } export const config = { // Match nothing for now — route handler owns /api/auth/* matcher: [], };