From: XhmikosR Date: Sun, 22 Oct 2017 12:23:23 +0000 (+0300) Subject: Set autoprefixer's cascade option to false. (#24459) X-Git-Tag: v4.0.0-beta.3~207 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c70eaa156f5fc0b7f7019593390ebac1650967e2;p=thirdparty%2Fbootstrap.git Set autoprefixer's cascade option to false. (#24459) This saves a few bytes from the unminified dist files. --- 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 } } })