-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.ts
29 lines (24 loc) · 900 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 } from "next/server";
import type { NextRequest } from "next/server";
import { createMiddlewareClient } from "@supabase/auth-helpers-nextjs";
export async function middleware(
request: NextRequest
): Promise<NextResponse | unknown> {
const response = NextResponse.next();
const supabase = createMiddlewareClient({ req: request, res: response });
const {
data: { user },
} = await supabase.auth.getUser();
// if user is signed in and the current path is / redirect the user to /account
if (user && request.nextUrl.pathname === "/#") {
return NextResponse.redirect(new URL("/snippets", request.url));
}
if (!user && request.nextUrl.pathname === "/snippets") {
return NextResponse.redirect(new URL("/#", request.url));
}
return response;
}
// See "Matching Paths" below to learn more
export const config = {
matcher: ["/", "/snippets", "/#"],
};