refactor: middleware.ts zu proxy.ts umbenannt gemaess Next.js 16 Spezifikation
Some checks failed
Staging Build / build (push) Has been cancelled

This commit is contained in:
DanielS
2026-06-30 12:41:14 +02:00
parent cce632d821
commit b083f3ac77

View File

@@ -1,7 +1,7 @@
import { updateSession } from "@/lib/supabase/proxy";
import { type NextRequest } from "next/server";
export async function middleware(request: NextRequest) {
export async function proxy(request: NextRequest) {
return await updateSession(request);
}