-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.ts
29 lines (26 loc) · 868 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 { cookies } from 'next/headers';
import { type NextRequest } from 'next/server';
// This function can be marked `async` if using `await` inside
export function middleware(request: NextRequest) {
const cookieStore = cookies();
// if (request.cookies.has(accessTokenCookieName)) {
// console.log("has access token")
// if(request.nextUrl.pathname === '/') {
// const url = request.nextUrl.clone()
// url.pathname = '/stream'
// return NextResponse.redirect(url)
// }
// }
}
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).*)'
]
};