migrate from next middleware to proxy

This commit is contained in:
Maze Winther 2026-02-22 17:43:35 +01:00
parent d733609c61
commit f4ab1534ed
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
import { NextResponse } from "next/server";
export async function middleware() {
export async function proxy() {
return NextResponse.next();
}