-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b354475
commit a4bc0eb
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
], | ||
}; |