We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 024b4d4 commit 214fc8eCopy full SHA for 214fc8e
config/webpack.config.prod.js
@@ -64,7 +64,10 @@ module.exports = {
64
{
65
test: /\.css$/,
66
include: srcPath,
67
- loader: ExtractTextPlugin.extract('style', 'css!postcss')
+ // Disable autoprefixer in css-loader itself:
68
+ // https://github.com/webpack/css-loader/issues/281
69
+ // We already have it thanks to postcss.
70
+ loader: ExtractTextPlugin.extract('style', 'css?-autoprefixer!postcss')
71
},
72
73
test: /\.json$/,
0 commit comments