Skip to content

Instantly share code, notes, and snippets.

@phun-ky
Created February 6, 2018 21:03
Show Gist options
  • Save phun-ky/eeccc2fc313286ab9f2a862cc4f4d896 to your computer and use it in GitHub Desktop.
Save phun-ky/eeccc2fc313286ab9f2a862cc4f4d896 to your computer and use it in GitHub Desktop.
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