Hello! Gulp pug does not work. Itself is connected as npm i gulp-pug - save-dev
The gulpfile.js has:
const pug = require('gulp-pug'); gulp.task('pug', function() { return gulp.src('src/pug/*.pug') .pipe(pug()) .pipe(gulp.dest('src/temphtml/')) .pipe(browserSync.stream()); }); I want to get html, and gives such a picture. What could be the problem?