Bartosz
Results
1
comments of
Bartosz
For future references, in nextjs 15.5+ you can use middleware.ts to avoid this. Example for nodejs runtime: ``` import { NextRequest, NextResponse } from "next/server"; export async function middleware(request: NextRequest)...