[MVPTN-80] deploy(Docker): Ajuste de API de requisição

This commit is contained in:
Keven Willian Pereira de Souza 2025-09-29 13:01:20 -03:00
parent 449340c7b4
commit 1efb9aba94

View file

@ -1,7 +1,13 @@
// next.config.js
const nextConfig = {
reactStrictMode: true,
// outras configs
}
async rewrites() {
return [
{
source: '/api/:path*',
destination: 'http://api_saas_api_homologacao:8000/:path*', // backend interno
},
];
},
};
export default nextConfig
export default nextConfig;