generated from ImJustLucas/Next-13-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmiddleware.ts
31 lines (24 loc) · 936 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
import { createMiddlewareClient } from "@supabase/auth-helpers-nextjs";
import { Database } from "@typesDef/database";
import type { NextRequest } from "next/server";
import { NextResponse } from "next/server";
export async function middleware(req: NextRequest) {
const res = NextResponse.next();
const supabase = createMiddlewareClient<Database>({ req, res });
await supabase.auth.getSession();
const {
data: { user },
} = await supabase.auth.getUser();
// if user is signed in and the current path is / redirect the user to /account
if (user && req.nextUrl.pathname === "/") {
return NextResponse.redirect(new URL("/account", req.url));
}
// if user is not signed in and the current path is not / redirect the user to /
if (!user && req.nextUrl.pathname !== "/") {
return NextResponse.redirect(new URL("/", req.url));
}
return res;
}
export const config = {
matcher: ["/", "/account"],
};