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

This commit is contained in:
Keven Willian Pereira de Souza 2025-09-29 12:56:55 -03:00
parent f10de65f74
commit dd028fd38e

10
next.config.js Normal file
View file

@ -0,0 +1,10 @@
module.exports = {
async rewrites() {
return [
{
source: '/api/:path*',
destination: 'http://api_saas_api_homologacao:8000/:path*', // backend interno
},
];
},
};