5 lines
99 B
JavaScript
5 lines
99 B
JavaScript
module.exports = ({ env }) => ({
|
|
host: env("HOST", "0.0.0.0"),
|
|
port: env.int("PORT", 443),
|
|
});
|