mirror of
https://github.com/strapi/strapi.git
synced 2025-09-20 05:52:08 +00:00
13 lines
247 B
TypeScript
13 lines
247 B
TypeScript
import type { StrapiConfig } from './types';
|
|
|
|
export const config: StrapiConfig = {
|
|
default: {
|
|
provider: 'sendmail',
|
|
providerOptions: {},
|
|
settings: {
|
|
defaultFrom: 'Strapi <no-reply@strapi.io>',
|
|
},
|
|
},
|
|
validator() {},
|
|
};
|