ai_api / src /proxy.ts
Yogesh
initial deploy
cd8bd0a
Raw
History Blame Contribute Delete
492 Bytes
import type { NextRequest } from "next/server";
import { runAuthzPipeline } from "./server/authz/pipeline";
export async function proxy(request: NextRequest) {
return runAuthzPipeline(request, { enforce: true });
}
export const config = {
matcher: [
"/",
"/dashboard/:path*",
"/home",
"/home/:path*",
"/api/:path*",
"/v1/:path*",
"/v1",
"/chat/:path*",
"/responses/:path*",
"/responses",
"/codex/:path*",
"/codex",
"/models",
],
};