Skip to content

Commit e70901a

Browse files
committed
Disable unused rule removal & identifier reduction. Fixes webpack-contrib#89.
1 parent ec7e884 commit e70901a

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)