Created
February 6, 2018 21:03
-
-
Save phun-ky/eeccc2fc313286ab9f2a862cc4f4d896 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
plugins: [ | |
require('cssnano')({ | |
autoprefixer: { add: true }, | |
discardComments: { removeAll: true }, | |
discardDuplicates: true, | |
discardEmpty: true, | |
discardOverridden: true, | |
discardUnused: true, | |
reduceIdents: false, | |
reduceInitial: false, | |
reduceTransforms: false, | |
zindex: false | |
}) | |
] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment