From ca6ef595c1cd6d2acff01f06198c25ee59703917 Mon Sep 17 00:00:00 2001 From: Jonas Kuske <30421456+jonaskuske@users.noreply.github.com> Date: Sun, 31 May 2020 01:31:13 +0200 Subject: [PATCH] feat: autoprefix docs css --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 4e21ebd..5a6b03e 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -118,7 +118,7 @@ const docs = () => { // * Process CSS * .pipe(cssOnly) .pipe(sourcemaps.init()) - .pipe(postcss([cssnano()])) + .pipe(postcss([autoprefixer(), cssnano()])) .pipe(sourcemaps.write('.')) .pipe(cssOnly.restore)