Delete projects/website/src/middleware.ts
All checks were successful
Deploy Website / docker (ubuntu-latest) (push) Successful in 2m8s

This commit is contained in:
Lee 2024-10-20 22:03:38 +00:00
parent 81640c3c4e
commit d0bcd29796

@ -1,30 +0,0 @@
import { type NextRequest, NextResponse } from "next/server";
import { isProduction } from "@ssr/common/utils/utils";
export function middleware(request: NextRequest) {
const before = Date.now();
const response = NextResponse.next();
const ip = request.headers.get("CF-Connecting-IP") || request.headers.get("X-Forwarded-For");
// Log requests in production
if (isProduction()) {
console.log(
` ${ip} | ${request.method} ${request.nextUrl.pathname} ${response.status} in ${(Date.now() - before).toFixed(0)}ms`
);
}
return response;
}
export const config = {
matcher: [
/*
* Match all request paths except for the ones starting with:
* - api (API routes)
* - _next/static (static files)
* - _next/image (image optimization files)
* - favicon.ico (favicon file)
*/
"/((?!api|_next/static|_next/image|favicon.ico).*)",
],
};