api9nin / src /proxy.js
github-actions[bot]
deploy from github actions 2026-06-18
c8ae75d
Raw
History Blame Contribute Delete
236 Bytes
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).*)"],
};