From aeb90b7c4a28308bc7d0c2678b2189bba14f37a6 Mon Sep 17 00:00:00 2001 From: Yamagishi Kazutoshi Date: Sun, 14 May 2017 19:57:54 +0900 Subject: [PATCH] Add browserslist config for autoprefixer (#3053) We will reduce the weight of the style sheet by specifying the target web browser of autoprefixer. --- .postcssrc.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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