File size: 297 Bytes
b2806e8
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import { NextResponse } from 'next/server';
import type { NextRequest } from 'next/server';

export function middleware(request: NextRequest) {
  // No authentication required for demo
  return NextResponse.next();
}

export const config = {
  matcher: ['/dashboard/:path*', '/market/:path*'],
};