Skip to content

Commit

Permalink
Try adding middleware
Browse files Browse the repository at this point in the history
  • Loading branch information
petrvecera committed Dec 14, 2024
1 parent b354475 commit a4bc0eb
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions .idea/coh3-stats.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions middleware.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { NextRequest, NextResponse } from "next/server";

export function middleware(request: NextRequest) {
// Log the request details to the console
console.log(`[Middleware] Request: ${request.method} ${request.url}`);

// You can optionally modify the request or response here if needed
return NextResponse.next(); // Continue to the next middleware or the route handler
}

export const config = {
matcher: [
"/api/:path*", // Match all API routes
"/explorer/:path*", // Match specific pages
"/:path*", // Match all routes
],
};

0 comments on commit a4bc0eb

Please sign in to comment.