-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmiddleware.ts
More file actions
38 lines (31 loc) · 1.2 KB
/
middleware.ts
File metadata and controls
38 lines (31 loc) · 1.2 KB
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
38
import { NextResponse } from "next/server"
import type { NextRequest } from "next/server"
export function middleware(request: NextRequest) {
const authToken = request.cookies.get("auth-token")?.value
const { pathname } = request.nextUrl
// Public routes that don't require authentication
const publicRoutes = ["/signin", "/signup", "/forgot-password"]
// Check if the route is public
const isPublicRoute = publicRoutes.some((route) => pathname.startsWith(route))
// If the route is public and the user is authenticated, redirect to home
if (isPublicRoute && authToken) {
return NextResponse.redirect(new URL("/", request.url))
}
// If the route is not public and the user is not authenticated, redirect to signin
if (!isPublicRoute && !authToken && pathname !== "/") {
return NextResponse.redirect(new URL("/signin", request.url))
}
return NextResponse.next()
}
export const config = {
matcher: [
/*
* Match all request paths except for the ones starting with:
* - api (API routes)
* - _next/static (static files)
* - _next/image (image optimization files)
* - favicon.ico (favicon file)
*/
"/((?!api|_next/static|_next/image|favicon.ico).*)",
],
}