-
Notifications
You must be signed in to change notification settings - Fork 0
/
middleware.ts
29 lines (21 loc) · 866 Bytes
/
middleware.ts
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 { createMiddlewareClient } from '@supabase/auth-helpers-nextjs'
import { NextResponse } from 'next/server'
import type { NextRequest } from 'next/server'
export async function middleware(req: NextRequest) {
const res = NextResponse.next()
// Create a Supabase client configured to use cookies
const supabase = createMiddlewareClient({ req, res })
// Refresh session if expired - required for Server Components
// https://supabase.com/docs/guides/auth/auth-helpers/nextjs#managing-session-with-middleware
await supabase.auth.getSession()
const {
data: { user },
} = await supabase.auth.getUser()
if (user && req.nextUrl.pathname === '/auth') {
return NextResponse.redirect(new URL('/', req.url))
}
if (!user && req.nextUrl.pathname === '/') {
return NextResponse.redirect(new URL('/auth', req.url))
}
return res
}