Alexandre Bodin 6ca740bd29 Fix env casting should return undefined if var is not defined
Signed-off-by: Alexandre Bodin <bodin.alex@gmail.com>
2020-04-29 11:06:42 +02:00

5 lines
83 B
JavaScript

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