Skip to content

Commit cbaf737

Browse files
committed
Fix autoprefixer warning
1 parent 4220134 commit cbaf737

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

gulpfile.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,7 @@ function buildExamplesStyle(minifyStyles = false) {
106106
.pipe(sass({
107107
outputStyle: 'expanded',
108108
}).on('error', sass.logError))
109-
.pipe(autoprefixer({
110-
browsers: ['last 2 versions'],
111-
}));
109+
.pipe(autoprefixer());
112110

113111
if (minifyStyles) {
114112
stream = stream.pipe(cleanCss());

0 commit comments

Comments
 (0)