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
We should only update links that point to resources we serve. The CssLinkResourceTransformer should have a check that excludes links that are not relative -- i.e. either links that don't start with "/" or links that start with a scheme. The scheme could be as simple as looking for the first ":" and then ensuring the resulting substring does not contain any "/". This is very similar to a check added recently to StringUtils.cleanPath.