Wrong: ```js new OptimizeCssAssetsPlugin({cssProcessorOptions: {map: true}}) ``` Correct: ```js new OptimizeCssAssetsPlugin({cssProcessorOptions: {map: {inline: false, annotations: true}}}) ``` Since with `optimize-css-assets-webpack-plugin` `map` is supposed to be an [object][1]. More info [here][2]. [1]: https://github.com/NMFR/optimize-css-assets-webpack-plugin/blob/v5.0.1/src/index.js#L58 [2]: https://github.com/postcss/postcss/blob/master/docs/source-maps.md At least this much is worth mentioning in the `README`,