From 6e3532c9fb228cdc099d74d6be2437ab1d021c85 Mon Sep 17 00:00:00 2001 From: afc163 Date: Wed, 30 Mar 2016 23:36:40 +0800 Subject: [PATCH] fix ie9 prefix --- webpack.config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index c1d081a166..17bf1e2e14 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -58,7 +58,11 @@ module.exports = { }] }, - postcss: [autoprefixer], + postcss: [ + autoprefixer({ + browsers: ['last 2 versions', 'Firefox ESR', '> 1%', 'ie >= 8'] + }) + ], plugins: [ new ExtractTextPlugin('[name].css'),