chore: rename proxy to middleware

This commit is contained in:
Maze Winther
2026-03-29 15:58:46 +02:00
parent d862e56e34
commit f8a0390827
@@ -1,6 +1,6 @@
import { NextResponse } from "next/server";
export async function proxy() {
export async function middleware() {
return NextResponse.next();
}