5 lines
102 B
JavaScript
Raw Normal View History

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