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.
2 parents e4ba5ca + 34de095 commit 614469fCopy full SHA for 614469f
webpack.config.js
@@ -50,7 +50,9 @@ var config = {
50
loader: ExtractTextPlugin.extract('style', 'css')
51
}, {
52
test: /\.less$/,
53
- loader: ExtractTextPlugin.extract('style', ['css', 'less'])
+ // The mergeRules transformation breaks our zoom slider thumb.
54
+ // https://github.com/ben-eb/postcss-merge-rules/issues/18
55
+ loader: ExtractTextPlugin.extract('style', ['css?-mergeRules', 'less'])
56
57
test: /\.(png|jpg)$/,
58
loader: 'url?limit=8192'
0 commit comments