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
fix(@angular/build): properly rebase Sass url() values with leading interpolations
Previously, the Sass url() rebasing logic was skipping values that contained
leading Sass interpolations. This was because an interpolation starts with
the `#` character which in CSS indicates a fragment identifier and not a path.
However, Sass special cases this scenario by checking if the next character is
the `{` character and considers it an interpolation if present. The Angular
rebasing logic will now match this behavior.
(cherry picked from commit 0b8a520)
0 commit comments