I am trying to load helvetica font file from my local server using @font-face in my css file. In my network tab I am able to see only 400Bytes of data getting downloaded (server response headers only) while the actual file size is 47kB. When investigating
I found that the issue is because of the Cache-control: no-Cache,no-store header that I receive from the server. If I remove that header, my font file is working fine. Is there any workaround to this issue without removing the
header?
Here is the stack overflow link :https://stackoverflow.com/questions/26894319/icon-fonts-not-loading-in-ie11