// next.config.js const nextConfig = { async rewrites() { return [ { source: '/api/v1/:path*', destination: 'http://api_saas_api_homologacao:8000/:path*', // backend interno }, ]; }, }; export default nextConfig;