Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Latest commit

 

History

History
22 lines (17 loc) · 520 Bytes

disable-html-minification.md

File metadata and controls

22 lines (17 loc) · 520 Bytes

English / 日本語

HTMLの最小化を無効にする

htmlタスクから$.htmlmin()パイプを削除します。

gulp.task('html', function () {
  return gulp.src('app/**/*.html')
-   .pipe($.htmlmin({
-     ...
-   }))
    .pipe(gulp.dest('dist'));
});

オプション:
この機能を完全に削除したい場合は、gulp-htmlminをプロジェクトからアンインストールします。

$ npm uninstall gulp-htmlmin --save-dev