fix: use middleware.ts instead of proxy.ts for build compatibility

This commit is contained in:
Unchained
2026-04-01 05:17:36 +02:00
parent 3697a5d8ea
commit 13301dca12

View File

@@ -1,7 +1,7 @@
import { NextResponse } from "next/server";
import type { NextRequest } from "next/server";
export function proxy(request: NextRequest) {
export function middleware(request: NextRequest) {
const response = NextResponse.next();
const url = request.nextUrl.pathname;