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.
|
module.exports = ({ env }) => ({
|
|
host: env('HOST', '0.0.0.0'),
|
|
port: env.int('PORT', 1337),
|
|
admin: {
|
|
auth: {
|
|
secret: env('ADMIN_JWT_SECRET', '46406f8e1e52dc3ae4c6ce7a7fc5e71d'),
|
|
},
|
|
},
|
|
});
|