-
Notifications
You must be signed in to change notification settings - Fork 0
/
middleware.ts
37 lines (31 loc) · 1005 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
30
31
32
33
34
35
36
37
import { NextResponse, type NextRequest } from "next/server";
import { updateSession } from "@/lib/supabase/middleware";
export async function middleware(request: NextRequest) {
const { response, supabase } = await updateSession(request);
const {
data: { user },
error,
} = await supabase.auth.getUser();
if (request.nextUrl.pathname.startsWith("/dashboard")) {
if (!user) {
return NextResponse.redirect(new URL("/sign-in", request.url));
}
}
if (["/sign-in", "/sign-up"].includes(request.nextUrl.pathname)) {
if (user) {
return NextResponse.redirect(new URL("/dashboard", request.url));
}
}
return response;
}
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)
*/
"/((?!_next/static|_next/image|favicon.ico|.*\\.(?:svg|png|jpg|jpeg|gif|webp)$).*)",
],
};