-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmiddleware.ts
More file actions
41 lines (36 loc) · 1.18 KB
/
middleware.ts
File metadata and controls
41 lines (36 loc) · 1.18 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
39
40
41
import {NextResponse} from 'next/server'
import type {NextRequest} from 'next/server'
export function middleware(request: NextRequest) {
const token = request.cookies.get('linear_access_token')
const isAuthPage = request.nextUrl.pathname === '/login'
const isOnboardingPage = request.nextUrl.pathname === '/onboarding'
const isPublicPage = [
'/',
'/login',
'/onboarding',
'/homepage',
// Add other public routes here
].includes(request.nextUrl.pathname)
// If user is not authenticated and trying to access protected route
if (!token && !isPublicPage) {
return NextResponse.redirect(new URL('/login', request.url))
}
// If user is authenticated and trying to access login page
if (token && isAuthPage) {
return NextResponse.redirect(new URL('/', 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)
* - public folder
*/
'/((?!api|_next/static|_next/image|favicon.ico|public).*)',
],
}