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.

server.js 182B

12345678
  1. module.exports = ({ env }) => ({
  2. host: env("HOST", "0.0.0.0"),
  3. port: env.int("PORT", 1337),
  4. app: {
  5. keys: env.array("APP_KEYS"),
  6. },
  7. url: "https://strapi.dilig.net",
  8. });