Closed brycewray closed 3 years ago
There are no special recommendations, it works as any other plugin. You may setup postcss-csso in postcss.config.js
like so:
module.exports = {
plugins: [
require('postcss-csso')({
// options if any
})
]
};
I've added this example in README. Thanks for the question!
Is there any recommended procedure for using this in a
postcss.config.js
file, similar to how that’s done with other PostCSS minification plugins like postcss-clean or cssnano?