diff --git a/projects/website/src/middleware.ts b/projects/website/src/middleware.ts deleted file mode 100644 index 8e0a455..0000000 --- a/projects/website/src/middleware.ts +++ /dev/null @@ -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).*)", - ], -};