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.
strapi-guitar-school/config/plugins.ts

45 lines
1007 B

module.exports = ({env}) => ({
// ...
email: {
config: {
provider: 'nodemailer',
providerOptions: {
host: env('SMTP_HOST', 'smtp.example.com'),
port: env('SMTP_PORT', 587),
auth: {
user: env('SMTP_USERNAME'),
pass: env('SMTP_PASSWORD'),
},
// ... any custom nodemailer options
},
settings: {
defaultFrom: env('SMTP_DEFAULT_FROM', 'no-reply@strapi.io'),
defaultReplyTo: env('SMTP_DEFAULT_REPLY', 'synology@naser.fr'),
},
},
},
'import-export-entries': {
enabled: true
},
'vendors': {
enabled: true,
resolve: './src/plugins/vendors'
},
upload: {
config: {
provider: 'cloudinary',
providerOptions: {
cloud_name: 'djgzqzujy',
api_key: '161331531972295',
api_secret: '-Yk554hkcAD9x7_pkPN_2knXAMg',
},
actionOptions: {
upload: {},
uploadStream: {},
delete: {},
},
},
},
// ...
});