We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It's now possible to use CleanCSS:
const CleanCss = require("clean-css"); new OptimizeCssAssetsPlugin({ cssProcessor: CleanCss, cssProcessorOptions: { sourceMap: true } })
... but source maps do not work.
CleanCSS.process is not returning the source map (map), and it's also not appending the sourceMappingURL comment to the processed CSS.
sourceMappingURL
It seems like it also needs to pass the current/previous map when calling minify (see this comment for an example).
minify
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It's now possible to use CleanCSS:
... but source maps do not work.
CleanCSS.process is not returning the source map (map), and it's also not appending the
sourceMappingURL
comment to the processed CSS.It seems like it also needs to pass the current/previous map when calling
minify
(see this comment for an example).The text was updated successfully, but these errors were encountered: