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.

28 rivejä
634 B

  1. module.exports = ({ env }) => ({
  2. email: {
  3. provider: "nodemailer",
  4. providerOptions: {
  5. host: env("SMTP_HOST"),
  6. port: env("SMTP_PORT"),
  7. secure: false,
  8. auth: {
  9. user: env("SMTP_USER"),
  10. pass: env("SMTP_PASSWORD"),
  11. },
  12. },
  13. settings: {
  14. defaultFrom: "noreply@thamrin.co.id",
  15. defaultReplyTo: "noreply@thamrin.co.id",
  16. },
  17. },
  18. graphql : {
  19. endpoint: "/graphql",
  20. shadowCRUD: true,
  21. playgroundAlways: false,
  22. depthLimit: 1000,
  23. apolloServer: {
  24. tracing: false,
  25. },
  26. },
  27. });