function OptimizeCssAssetsPlugin(options) { this.options = options || {}; if (this.options.assetNameRegExp === undefined) { this.options.assetNameRegExp = /\.css$/g; } if (this.options.cssProcessor === undefined) { this.options.cssProcessor = require('cssnano'); } if (this.options.cssProcessorOptions === undefined) { this.options.cssProcessorOptions = {}; } if (this.options.canPrint === undefined) { this.options.canPrint = true; } }
n/a