chore: rename proxy to middleware

This commit is contained in:
Maze Winther
2026-03-27 21:20:46 +01:00
parent 8918a87c33
commit 6b81afc20b
@@ -1,6 +1,6 @@
import { NextResponse } from "next/server";
export async function proxy() {
export async function middleware() {
return NextResponse.next();
}