You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
210 B
JavaScript
10 lines
210 B
JavaScript
3 years ago
|
module.exports = ({ env }) => ({
|
||
|
host: env('HOST', '0.0.0.0'),
|
||
|
port: env.int('PORT', 1337),
|
||
|
admin: {
|
||
|
auth: {
|
||
|
secret: env('ADMIN_JWT_SECRET', '46406f8e1e52dc3ae4c6ce7a7fc5e71d'),
|
||
|
},
|
||
|
},
|
||
|
});
|