htmlmin.js 227 B

123456789101112
  1. module.exports = {
  2. min: {
  3. files: [{
  4. expand: true,
  5. cwd: 'src/tpl/',
  6. src: ['*.html', '**/*.html'],
  7. dest: 'dist/tpl/',
  8. ext: '.html',
  9. extDot: 'first'
  10. }]
  11. }
  12. }