htmlmin.js 285 B

12345678910111213141516
  1. module.exports = function(config) {
  2. return {
  3. build: {
  4. options:{
  5. removeComments: true,
  6. collapseWhitespace: true
  7. },
  8. expand: true,
  9. cwd: '<%= genDir %>',
  10. src: [
  11. 'app/**/*.html',
  12. ],
  13. dest: '<%= genDir %>'
  14. }
  15. };
  16. };