-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproxy.ts
More file actions
25 lines (22 loc) · 835 Bytes
/
proxy.ts
File metadata and controls
25 lines (22 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { NextResponse, type NextRequest } from 'next/server'
import { updateSession } from '@/app/utils/supabase/middleware'
export async function proxy(request: NextRequest) {
// Allow all API routes to proceed without auth checks
if (request.nextUrl.pathname.startsWith('/api/')) {
return NextResponse.next()
}
// Use the Supabase session update for all other routes
return await updateSession(request)
}
export const config = {
matcher: [
/*
* Match all request paths except for the ones starting with:
* - _next/static (static files)
* - _next/image (image optimization files)
* - favicon.ico (favicon file)
* Feel free to modify this pattern to include more paths.
*/
'/((?!_next/static|_next/image|favicon.ico|api/metadata|.*\\.(?:svg|png|jpg|jpeg|gif|webp)$).*)',
],
}