diff options
| author | XhmikosR <[email protected]> | 2017-10-22 15:23:23 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-10-22 15:23:23 +0300 |
| commit | c70eaa156f5fc0b7f7019593390ebac1650967e2 (patch) | |
| tree | f8e9a9dca4dddaed416aec1c3a07762db19a971d | |
| parent | 060258f9bef49999ada28189181638f0435c502a (diff) | |
| download | bootstrap-c70eaa156f5fc0b7f7019593390ebac1650967e2.tar.xz bootstrap-c70eaa156f5fc0b7f7019593390ebac1650967e2.zip | |
Set autoprefixer's cascade option to false. (#24459)
This saves a few bytes from the unminified dist files.
| -rw-r--r-- | build/postcss.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/postcss.config.js b/build/postcss.config.js index 425228eaa..c7c9a17b0 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 } } }) |
