Some of our IE11 clients are not seeing the \"font-awesome\" webfonts in our web application. I have done extensive testing with our own IE11 instances, and also via cross b
Removing the Pragma Header from the response header in the endpoint from where the fonts are downloaded solved for me.
if (request.getServletPath().contains(".woff") || request.getServletPath().contains(".ttf")) { headers.remove(HttpHeaders.PRAGMA); }