13 lines
247 B
TypeScript
Raw Normal View History

import type { StrapiConfig } from './types';
2021-07-20 12:12:30 +02:00
export const config: StrapiConfig = {
2021-08-19 16:49:33 +02:00
default: {
provider: 'sendmail',
providerOptions: {},
settings: {
defaultFrom: 'Strapi <no-reply@strapi.io>',
},
},
validator() {},
2021-07-20 12:12:30 +02:00
};