From ad0721ecd846d57502c28256ad6a26ecc964b043 Mon Sep 17 00:00:00 2001 From: pablonyx Date: Wed, 26 Feb 2025 10:12:07 -0800 Subject: [PATCH] update (#4086) --- web/next.config.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/web/next.config.js b/web/next.config.js index f8ca77b62..519c313e2 100644 --- a/web/next.config.js +++ b/web/next.config.js @@ -68,6 +68,28 @@ const nextConfig = { }, ]; }, + async rewrites() { + return [ + { + source: "/api/docs/:path*", // catch /api/docs and /api/docs/... + destination: `${ + process.env.INTERNAL_URL || "http://localhost:8080" + }/docs/:path*`, + }, + { + source: "/api/docs", // if you also need the exact /api/docs + destination: `${ + process.env.INTERNAL_URL || "http://localhost:8080" + }/docs`, + }, + { + source: "/openapi.json", + destination: `${ + process.env.INTERNAL_URL || "http://localhost:8080" + }/openapi.json`, + }, + ]; + }, }; // Sentry configuration for error monitoring: