Spaces:
Sleeping
Sleeping
File size: 236 Bytes
ebd68ab | 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).*)"],
};
|