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
Is your feature request related to a problem? Please describe.
I recently upgraded to FontAwesome 5.13 and when I did, users were getting caching issues. The main css file, all.min.css, was up to date but the urls to the font files were still the same so browsers didn't update the fonts. Thus, instead of displaying the icons, users were seeing Asian characters.
Describe the solution you'd like
In each of the css files provided by FontAwesome, when making url() calls to the font files, the current FontAwesome version could be appended to the url. This change would be enough to force a browser to load the new version.
E.g. url("../webfonts/fa-brands-400.eot")
would become url("../webfonts/fa-brands-400.eot?v=5.13.0")
Describe alternatives you've considered
Appending other cache busting techniques would also work, such as a using a file hash.
Additional context
These are the icons that users were seeing
Feature request checklist
[ X ] This is a single feature (i.e. not a re-write of all of Font Awesome)
[ X ] The title starts with "Feature request: " and is followed by a clear feature name (Ex: Feature request: moar cowbell)
Is your feature request related to a problem? Please describe.
I recently upgraded to FontAwesome 5.13 and when I did, users were getting caching issues. The main css file,
all.min.css
, was up to date but the urls to the font files were still the same so browsers didn't update the fonts. Thus, instead of displaying the icons, users were seeing Asian characters.Describe the solution you'd like
In each of the css files provided by FontAwesome, when making
url()
calls to the font files, the current FontAwesome version could be appended to the url. This change would be enough to force a browser to load the new version.E.g.
url("../webfonts/fa-brands-400.eot")
would become
url("../webfonts/fa-brands-400.eot?v=5.13.0")
Describe alternatives you've considered
Appending other cache busting techniques would also work, such as a using a file hash.
Additional context
These are the icons that users were seeing
Feature request checklist
Feature request: moar cowbell
)The text was updated successfully, but these errors were encountered: