Skip to content

Commit f0f7108

Browse files
committed
Merge pull request webpack-contrib#91 from ben-eb/patch-89
Disable unused rule removal & identifier reduction. Fixes webpack-contrib#89.
2 parents ec7e884 + e70901a commit f0f7108

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/processCss.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,9 @@ module.exports = function processCss(inputSource, inputMap, options) {
161161
if(minimize) {
162162
pipeline.use(cssnano({
163163
zindex: false,
164-
urls: false
164+
urls: false,
165+
unused: false,
166+
idents: false
165167
}));
166168
}
167169

0 commit comments

Comments
 (0)