You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First!!I I must say thanks to Mads, for his dedication and creation of all the numerous of extensions you made by the years. :-)
So, I'm just trying to find the solution to my problem.
I inverstigated the code this weekend.
I do suspect that the conversion when creating the file as UTF-8 is the bad boy here.
I also made a project where I minified css files and produced the css files as [filename].min.css.gz (.NET6 generation Gzip)
All of the generated files generated correct minification.
The code i used is my ThemeBuilder
"Please let me know if there's something I can do."
Go to %temp%
Rename WebCompiler1.12.5 to WebCompiler1.12.5.old
and rename the previous version you had on VS2019 to WebCompiler1.12.5
See if that works
Installed product versions
Description
Minification fails
.icon:before { content: ""; }
Steps to recreate
.icon:before { content: "\ea02"; }
Current behavior
The unminified .css file is correct.
The minified css file produces
.icon:before{ content:""; }
Expected behavior
.icon:before{content"\ea02";}
I tested the same code with several online tools like: https://www.sassmeister.com/ , to prove that my sass is correct.
I also tested to minify the code provided at for eg: https://www.toptal.com/developers/cssminifier/
The result is as expected and correct.
Any idea what causes this?
The text was updated successfully, but these errors were encountered: