Middleware -> proxy

This commit is contained in:
Owen 2026-05-27 21:31:59 -07:00
parent ddb132f9fa
commit b3963cc34b
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD

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();
}