From c70eaa156f5fc0b7f7019593390ebac1650967e2 Mon Sep 17 00:00:00 2001
From: XhmikosR <xhmikosr@gmail.com>
Date: Sun, 22 Oct 2017 15:23:23 +0300
Subject: [PATCH] Set autoprefixer's cascade option to false. (#24459)

This saves a few bytes from the unminified dist files.
---
 build/postcss.config.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build/postcss.config.js b/build/postcss.config.js
index 425228eaac..c7c9a17b05 100644
--- a/build/postcss.config.js
+++ b/build/postcss.config.js
@@ -7,6 +7,6 @@ module.exports = (ctx) => ({
     sourcesContent: true
   },
   plugins: {
-    autoprefixer: {}
+    autoprefixer: { cascade: false }
   }
 })
-- 
GitLab