-
Notifications
You must be signed in to change notification settings - Fork 2
/
middleware.js
34 lines (28 loc) · 967 Bytes
/
middleware.js
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
// middleware.ts
import { getToken } from 'next-auth/jwt'
import { NextResponse } from 'next/server'
// This function can be marked `async` if using `await` inside
export async function middleware(req) {
const token = await getToken({ req, secret: process.env.JWT_SECRET })
const { pathname } = req.nextUrl
if (pathname.includes("/api/auth") || token) {
return NextResponse.next()
}
if (!token && pathname != "/login") {
return NextResponse.redirect(new URL('/login', req.url))
}
return NextResponse.next()
}
// See "Matching Paths" below to learn more
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).*)',
],
}