10 lines
203 B
JavaScript
10 lines
203 B
JavaScript
module.exports = {
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: '/api/:path*',
|
|
destination: 'http://api_saas_api_homologacao:8000/:path*', // backend interno
|
|
},
|
|
];
|
|
},
|
|
};
|