Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,7 @@ export function proxy(request: NextRequest) {

export const config = {
// Run on all routes except Next.js internals and static assets
matcher: ["/((?!_next/static|_next/image|favicon.ico).*)"],
matcher: [
"/((?!_next/static|_next/image|favicon\\.ico|.*\\.(?:svg|png|jpg|jpeg|gif|webp)$).*)",
],
};
Loading