Skip to content

Commit

Permalink
Autoprefixer support last 3 browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
patkub committed Dec 12, 2024
1 parent 160c3e7 commit bd1da69
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ gulp.task('pack-css', () => {
]
}))
// add vendor prefixes to rules by Can I Use
.pipe(postcss([autoprefixer()]))
.pipe(postcss([
autoprefixer({
browsers: ['last 3 versions']
})
]))
.pipe(gulp.dest('dist/assets/css'));
});

Expand Down

0 comments on commit bd1da69

Please sign in to comment.