diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2017-05-14 19:57:54 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-05-14 12:57:54 +0200 |
commit | aeb90b7c4a28308bc7d0c2678b2189bba14f37a6 (patch) | |
tree | fc8794a21785b1b42917fe4743c6be304052fb69 | |
parent | fb87e847bcbbf5899a2d06ea59d73e79191175de (diff) |
Add browserslist config for autoprefixer (#3053)
We will reduce the weight of the style sheet by specifying the target web browser of autoprefixer.
-rw-r--r-- | .postcssrc.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.postcssrc.yml b/.postcssrc.yml index bc4f02ab3..220fe0bb9 100644 --- a/.postcssrc.yml +++ b/.postcssrc.yml @@ -1,4 +1,8 @@ plugins: postcss-smart-import: {} precss: {} - autoprefixer: {} + autoprefixer: + browsers: + - last 2 versions + - IE >= 11 + - iOS >= 9 |