-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproxy.ts
More file actions
29 lines (24 loc) · 954 Bytes
/
proxy.ts
File metadata and controls
29 lines (24 loc) · 954 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
26
27
28
29
import { type NextRequest, NextResponse } from 'next/server';
import { updateSession } from '@/lib/supabase/middleware';
export async function proxy(request: NextRequest) {
const { searchParams, pathname, origin } = request.nextUrl;
// Handle OAuth PKCE code at root - redirect to callback handler
if (pathname === '/' && searchParams.has('code')) {
const code = searchParams.get('code');
return NextResponse.redirect(`${origin}/api/auth/callback?code=${code}`);
}
return await updateSession(request);
}
export const config = {
matcher: [
/*
* Match all request paths except:
* - _next/static (static files)
* - _next/image (image optimization files)
* - favicon.ico (favicon file)
* - images - .svg, .png, .jpg, .jpeg, .gif, .webp
* Feel free to modify this pattern to include more paths.
*/
'/((?!_next/static|_next/image|favicon.ico|.*\\.(?:svg|png|jpg|jpeg|gif|webp)$).*)',
],
};