-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmiddleware.ts
29 lines (25 loc) · 851 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 { NextResponse, type NextRequest } from "next/server";
import { createClient } from "@/utils/supabase/middleware";
export async function middleware(request: NextRequest) {
const { url, nextUrl } = request;
const { supabase, response } = createClient(request);
const {
data: { user },
} = await supabase.auth.getUser();
if (!user) {
return NextResponse.redirect(`${nextUrl.origin}/sign-in`);
}
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)
* Feel free to modify this pattern to include more paths.
*/
"/((?!_next/static|_next/image|favicon.ico|sign-in|auth/*|faq|api/*|.*\\.jpg|.*\\.png).*)",
],
};