Skip to content

Commit 387cbcb

Browse files
committed
Merge pull request webpack-contrib#127 from ben-eb/patch-126
Update cssnano options. Fixes webpack-contrib#126.
2 parents 9e1c248 + 3d2435c commit 387cbcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/processCss.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ module.exports = function processCss(inputSource, inputMap, options) {
159159

160160
if(minimize) {
161161
var minimizeOptions = Object.create(query);
162-
["zindex", "urls", "unused", "idents"].forEach(function(name) {
162+
["zindex", "normalizeUrl", "discardUnused", "mergeIdents", "reduceIdents"].forEach(function(name) {
163163
if(typeof minimizeOptions[name] === "undefined")
164164
minimizeOptions[name] = false;
165165
});

0 commit comments

Comments
 (0)