From 449340c7b43bdc0095f56b3fe3002f8d10fcbd54 Mon Sep 17 00:00:00 2001 From: keven Date: Mon, 29 Sep 2025 12:59:52 -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 | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/next.config.js b/next.config.js index 0f8a14d..73e63e9 100644 --- a/next.config.js +++ b/next.config.js @@ -1,10 +1,7 @@ -module.exports = { - async rewrites() { - return [ - { - source: '/api/:path*', - destination: 'http://api_saas_api_homologacao:8000/:path*', // backend interno - }, - ]; - }, -}; +// next.config.js +const nextConfig = { + reactStrictMode: true, + // outras configs +} + +export default nextConfig