From 6fda7b422e60c8b459c87002ecdc947380b0a8d6 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Fri, 20 Oct 2017 10:42:49 +0300 Subject: [PATCH] Set autoprefixer's cascade option to false. 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 425228eaaccc..c7c9a17b053e 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 } } })