From dd028fd38e649c644ae8b878173953134b9aaa75 Mon Sep 17 00:00:00 2001 From: keven Date: Mon, 29 Sep 2025 12:56:55 -0300 Subject: [PATCH] =?UTF-8?q?[MVPTN-80]=20deploy(Docker):=20Ajuste=20de=20AP?= =?UTF-8?q?I=20de=20requisi=C3=A7=C3=A3o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- next.config.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 next.config.js diff --git a/next.config.js b/next.config.js new file mode 100644 index 0000000..0f8a14d --- /dev/null +++ b/next.config.js @@ -0,0 +1,10 @@ +module.exports = { + async rewrites() { + return [ + { + source: '/api/:path*', + destination: 'http://api_saas_api_homologacao:8000/:path*', // backend interno + }, + ]; + }, +};