import { NextResponse } from "next/server" export default function middleware() { return NextResponse.next() } export const config = { matcher: ["/((?!api|_next|_vercel|.*\\..*).*)"], }