Alexandre Bodin 0ed90fd2f1 Use default host and port
Signed-off-by: Alexandre Bodin <bodin.alex@gmail.com>
2020-04-29 11:06:42 +02:00

5 lines
100 B
JavaScript

module.exports = ({ env }) => ({
host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337),
});