Middleware -> proxy

This commit is contained in:
Owen
2026-05-27 21:31:59 -07:00
parent ddb132f9fa
commit b3963cc34b

View File

@@ -1,7 +1,7 @@
import { NextRequest, NextResponse } from "next/server";
import { build } from "@server/build";
export function middleware(request: NextRequest) {
export function proxy(request: NextRequest) {
return NextResponse.next();
}