Open rhaglennydd opened 2 weeks ago
Have the same issue! A solution can be: https://stackoverflow.com/a/76240184
Have the same issue! A solution can be: https://stackoverflow.com/a/76240184
If you look at the caniuse.com link, it shows that globally that syntax is only supported by 91.9% of browsers, so the fact that I included "> 1%" in browserslist should be enough to prevent it from being applied. I shouldn't have to modify browserslist.
š bug report
š Configuration (.babelrc, package.json, cli command)
My package.json looks like this:
If I run
browserslist
from the command line, this appears in the output:caniuse.com says that UC Browser for Android does not support these kinds of media queries as of version 15.5: https://caniuse.com/?search=css%20media%20range
šÆ Current Behavior
A media query like
@media (min-width: 1000px)
gets converted to@media (width >= 1000px)
. I ranupdate-browserslist-db
, but that made no difference.š Possible Solution
š¦ Context
š» Code Sample
š Your Environment