Pierre Noël bc3cee4c54 sanatize email options
Signed-off-by: Pierre Noël <petersg83@gmail.com>
2020-05-15 16:39:35 +02:00

17 lines
303 B
JavaScript

module.exports = ({ env }) => ({
graphql: {
amountLimit: 5,
depthLimit: 10,
},
email: {
provider: 'mailgun',
providerOptions: {
apiKey: env('MAILGUN_API_KEY'),
domain: env('MAILGUN_DOMAIN'),
},
settings: {
defaultFrom: 'strapi@strapi.io',
},
},
});