File size: 236 Bytes
88c4c60
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { proxy as dashboardProxy } from "./dashboardGuard";

export default async function proxy(request) {
  return dashboardProxy(request);
}

export const config = {
  matcher: ["/((?!_next/static|_next/image|favicon\\.ico).*)"],
};