/* | |
HTML Min | |
Minify HTML | |
https://github.com/gruntjs/grunt-contrib-htmlmin | |
*/ | |
'htmlmin': { | |
dist: { | |
options: { | |
removeComments: true, | |
collapseWhitespace: true | |
}, | |
files: { | |
'<%= config.dist %>/index.html': '<%= config.tmp %>/index.html' | |
} | |
}, | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment