5 lines
135 B
JavaScript
5 lines
135 B
JavaScript
|
module.exports = (config) => {
|
||
|
const backendPort = process.env.PERSEA_BACKPORT || 8004;
|
||
|
config.ports = [`${backendPort}:8004`];
|
||
|
};
|