5 lines
100 B
JavaScript
Raw Normal View History

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