-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmiddleware.ts
More file actions
35 lines (28 loc) · 1.13 KB
/
middleware.ts
File metadata and controls
35 lines (28 loc) · 1.13 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
import { NextResponse } from 'next/server';
import type { NextRequest } from 'next/server';
// Define public routes that don't require authentication
const publicRoutes = ['/', '/login', '/pending', '/about', '/contact', '/terms', '/privacy'];
// Define auth routes that should redirect if already logged in
const authRoutes = ['/login'];
export function middleware(request: NextRequest) {
const { pathname } = request.nextUrl;
// Check if user has a token (basic check)
const token = request.cookies.get('token')?.value ||
request.headers.get('authorization')?.replace('Bearer ', '');
// For now, we'll rely on client-side auth handling
// This middleware can be enhanced later for server-side token validation
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)
* - images (public images)
*/
'/((?!api|_next/static|_next/image|favicon.ico|images).*)',
],
};