14 lines
311 B
TypeScript
14 lines
311 B
TypeScript
import { NextResponse, type NextRequest } from 'next/server'
|
|
|
|
export function proxy(request: NextRequest) {
|
|
return NextResponse.next({
|
|
request,
|
|
})
|
|
}
|
|
|
|
export const config = {
|
|
matcher: [
|
|
'/((?!api/health|api/auth|_next/static|_next/image|favicon.ico|.*\\.(?:svg|png|jpg|jpeg|gif|webp)$).*)',
|
|
],
|
|
}
|