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
v-bind("color ? \"red\": \"green\"") would transform into color: var(--7ba5bd90-color\ \?\ \\\"red\\\"\:\ \\\"green\\\"); by vue-loader. It's not expected.
The css code:
After
lightningcss
transform, the custom css would be double-quoted first.The single-quoted can't be maintained.
v-bind("color ? \"red\": \"green\"")
would transform intocolor: var(--7ba5bd90-color\ \?\ \\\"red\\\"\:\ \\\"green\\\");
by vue-loader. It's not expected.Example in Lightningcss playground
Reference issue: web-infra-dev/rsbuild#3595 (comment)
The text was updated successfully, but these errors were encountered: