Commit 214fc8ee authored by Dan Abramov's avatar Dan Abramov
Browse files

Disable second pass of autoprefixer

parent 024b4d4f
No related merge requests found
Showing with 4 additions and 1 deletion
+4 -1
......@@ -64,7 +64,10 @@ module.exports = {
{
test: /\.css$/,
include: srcPath,
loader: ExtractTextPlugin.extract('style', 'css!postcss')
// Disable autoprefixer in css-loader itself:
// https://github.com/webpack/css-loader/issues/281
// We already have it thanks to postcss.
loader: ExtractTextPlugin.extract('style', 'css?-autoprefixer!postcss')
},
{
test: /\.json$/,
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment