UNPKG

stackpress

Version:

Incept is a content management framework.

12 lines (11 loc) 263 B
import emitter from './events.js'; export default function plugin(ctx) { if (!ctx.config.has('email')) return; ctx.on('listen', (_req, _res, ctx) => { if (!ctx.config.get('email')) return; ctx.use(emitter); }); } ;