6 lines
133 B
JavaScript
6 lines
133 B
JavaScript
module.exports = (config) => {
|
|
const gatewayPort = process.env.GATEWAY_PORT || 8000;
|
|
config.ports = [`${gatewayPort}:8000`];
|
|
};
|
|
|