6 lines
188 B
JavaScript
6 lines
188 B
JavaScript
gulp.task('minify-prod-html', function () {
|
|
gulp.src('output_prod/**/*.html')
|
|
.pipe(plugins.htmlmin({ collapseWhitespace: true }))
|
|
.pipe(gulp.dest('output_prod'));
|
|
});
|