You can not 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 rivejä
210 B

  1. module.exports = ({ env }) => ({
  2. host: env('HOST', '0.0.0.0'),
  3. port: env.int('PORT', 1337),
  4. admin: {
  5. auth: {
  6. secret: env('ADMIN_JWT_SECRET', 'ea704c52f457e83bff1b8a05b9c3a835'),
  7. },
  8. },
  9. });