CSSO (CSS Optimizer) is a CSS minimizer unlike others. In addition to usual minification techniques it can perform structural optimization of CSS files, resulting in smaller file size compared to other minifiers.
Install the plugin via npm:
npm install --save csso-brunch
To specify CSSO options, use config.plugins.csso
object, for example:
exports.config = {
...
plugins: {
csso: {
restructure: false
}
}
}
The MIT License (MIT)