import type { NextRequest, NextResponse } from "next/server";

export default function middleware(_request: NextRequest): NextResponse | undefined {
  return undefined;
}

export const config = {
  matcher: ["/((?!api|_next|_vercel|.*\\..*).*)"],
};
