From b750ab8cf7d92a5094b606efbba43b201ec36581 Mon Sep 17 00:00:00 2001 From: Matthew Taylor Date: Tue, 30 Aug 2016 11:12:11 -0400 Subject: [PATCH] Add webkit prefixes for safari 8 `caniuse` updated their api recently, and it appears that support for safari 8 is no longer in the last 3 versions (and it appears that safari 8 is not listed as supported there in general). explicitly add the version back in to make sure the proper `-webkit` prefixes are included for that browser. --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 8a1ef750e..4f73fceac 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -94,7 +94,7 @@ module.exports = { noParse: /node_modules\/google-libphonenumber\/dist/ }, postcss: function () { - return [autoprefixer({browsers: ['last 3 versions']})]; + return [autoprefixer({browsers: ['last 3 versions', 'Safari >= 8', 'iOS >= 8']})]; }, node: { fs: 'empty'