premailer.js 382 B

1234567891011121314
  1. module.exports = {
  2. main: {
  3. options: {
  4. verbose: true,
  5. removeComments: true
  6. },
  7. files: [{
  8. expand: true, // Enable dynamic expansion.
  9. cwd: 'dist', // Src matches are relative to this path.
  10. src: ['*.html'], // Actual pattern(s) to match.
  11. dest: '../public/emails/', // Destination path prefix.
  12. }],
  13. }
  14. };