font awesome icon is not appearing in IE 11, but showing in other browsers

前端 未结 16 1417
孤城傲影
孤城傲影 2020-12-01 06:40

I am new to font-awesome icons. I have one page in which there is a filter where user can search the data. I have added font awesome icon just before the search link (as per

16条回答
  •  萌比男神i
    2020-12-01 07:19

    I faced the same issue. My technology stack is Spring boot 2.0 and Angular 8. This issue occurs only when you try to refresh the page over HTTPS on IE 11.

    The problem is, the browser (IE 11) expects Cache-Control max-age. You need to set this header for static resources. To resolve this issue set the following property in application.property file.

    spring.resources.cache.cachecontrol.max-age=14400
    

提交回复
热议问题