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
Using font-awesome, I noticed the relative font paths were not converted to the new path.
Example URL:
url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular)
The real path of this file is not found, so $css_asset_path is empty, and conversion has not taken place.
The query string in the URL (?v=...) makes it fail. The code should first strip all query-string and url-hash, before trying to find the real path.
Using font-awesome, I noticed the relative font paths were not converted to the new path.
Example URL:
url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular)
The real path of this file is not found, so $css_asset_path is empty, and conversion has not taken place.
The query string in the URL (?v=...) makes it fail. The code should first strip all query-string and url-hash, before trying to find the real path.