grafana/tasks/options/htmlmin.js

17 lines
285 B
JavaScript

module.exports = function(config) {
return {
build: {
options:{
removeComments: true,
collapseWhitespace: true
},
expand: true,
cwd: '<%= genDir %>',
src: [
'app/**/*.html',
],
dest: '<%= genDir %>'
}
};
};