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
In HTML, .a and .A are treated as the same class due to case insensitivity, which causes style conflicts or overrides. This behavior can break functionality.
In Example 0.24.2 expected color: #004, but applied color: #01a.
The text was updated successfully, but these errors were encountered:
When using esbuild with CSS modules, the minification process can result in conflicting class names due to CSS being case-insensitive. For example:
Input CSS:
.class1 { color: red; } .class2 { color: blue; }
Some Minified Output:
.a { color: red; } .A { color: blue; }
In HTML, .a and .A are treated as the same class due to case insensitivity, which causes style conflicts or overrides. This behavior can break functionality.
In Example 0.24.2 expected
color: #004
, but appliedcolor: #01a
.The text was updated successfully, but these errors were encountered: