wa_strapi
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.

11 line
225 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", "f4b5b7ba9c157b7f1f921ee91be34b8a"),
  7. },
  8. },
  9. cron: { enabled: true },
  10. });