-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathmiddleware.ts
More file actions
29 lines (25 loc) · 826 Bytes
/
middleware.ts
File metadata and controls
29 lines (25 loc) · 826 Bytes
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 { NextResponse } from "next/server";
import type { NextRequest } from "next/server";
import { authMiddleware } from "@/lib/pro/auth/middleware";
export async function middleware(request: NextRequest) {
const pathname = request.nextUrl.pathname;
// Apply authentication middleware for pro routes
if (pathname.startsWith("/pro")) {
return authMiddleware(request);
}
// For non-pro routes, continue normally
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 files
*/
"/((?!api|_next/static|_next/image|favicon.ico|.*\\.).*)",
],
};