По каким-то причинам плагин gulp-webp-html не хочет работать.
Есть html-код:
<section class="map">
<h2 class="visually-hidden">Схема проезда</h2>
<figure class="map__wrapper">
<div class="map__interactive" id="map-interactive">
<p>Нажмите, чтобы включить интерактивную карту</p>
</div>
<picture>
<source media="(min-width: 960px)" srcset="img/map.png">
<source media="(min-width: 660px)" srcset="img/map-tablet.png">
<img src="img/map-mobile.png" alt="Схема проезда в наш офис" class="map__image">
</picture>
</figure>
</section>
Подключаю плагин и добавляю его в таск:
const webpHTML = require("gulp-webp-html");
function html() {
return src(path.src.html)
.pipe(fileInclude())
.pipe(webpHTML())
.pipe(dest(path.build.html))
.pipe(server.stream());
}
exports.html = html;
На выходе получается тот же самый код, без webp. Подскажите, что делаю не так?