We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7098843 commit d771feeCopy full SHA for d771fee
1 file changed
middleware.ts
@@ -19,6 +19,8 @@ export function middleware(request: NextRequest) {
19
if (pathname === '/landing' && isLoggedIn) {
20
return NextResponse.redirect(new URL('/', request.url));
21
}
22
+
23
+ return NextResponse.next();
24
25
26
export const config = {
0 commit comments