SIte ID: 9a53a75a-845d-4d68-89fc-a37541fe92ba
The site stopped working. It was working with “@netlify/plugin-nextjs”: “^4.36.1”,
upgrading to 4.38.1 doesn’t help
I simplified my middleware to the following code:
import { NextRequest, NextResponse } from "next/server";
export default async function middleware(req: NextRequest) {
console.log("req", req);
return NextResponse.next();
}
It doesn’t work. I receive HTTP ERROR 500
If I remove middleware I receive 200