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
I'm struggling to minify my css, and keep the sourceMappingURL comment to my .css.map file.
.css.map
On the minification branch of this minimal repo I have added a minimizer
minification
new OptimizeCSSAssetsPlugin({ cssProcessorOptions: { map: { inline: false } } })
I get unminified .css and a .css.map file but a correct map back to the .scss file.
.css
.scss
I get minified .css and a .css.map file, but the sourceMappingURL comment has been removed
The text was updated successfully, but these errors were encountered:
I encountered the same issue today. You can find the fix here: #81 (comment)
Sorry, something went wrong.
This works correctly - thank you!
No branches or pull requests
I'm struggling to minify my css, and keep the sourceMappingURL comment to my
.css.map
file.On the
minification
branch of this minimal repo I have added a minimizerBefore adding this minimizer
I get unminified
.css
and a.css.map
file but a correct map back to the.scss
file.After adding this minimizer
I get minified
.css
and a.css.map
file, but the sourceMappingURL comment has been removedThe text was updated successfully, but these errors were encountered: