From 3e12bc27d210c17d807421d231b36a41fe181a74 Mon Sep 17 00:00:00 2001 From: decolua Date: Sun, 21 Jun 2026 16:57:29 +0700 Subject: [PATCH] fix(next.config): add new route for responses endpoint to API --- next.config.mjs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/next.config.mjs b/next.config.mjs index f7ee57a3..468f4f50 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -62,6 +62,10 @@ const nextConfig = { source: "/codex/:path*", destination: "/api/v1/responses" }, + { + source: "/responses", + destination: "/api/v1/responses" + }, { source: "/v1/:path*", destination: "/api/v1/:path*"