twitter bootstrap 3 - Cannot get glyphicons-halflings-regular.woff2 -


i getting error messages - cant load glyphicons... why?

enter image description here

below folder structure of code

enter image description here

enter image description here

simply need add woff , woff2 mime types web.config or add them directly in webserver config file

  <system.webserver>     <staticcontent>       <remove fileextension=".woff" />       <remove fileextension=".woff2" />       <mimemap fileextension=".woff" mimetype="application/font-woff" />       <mimemap fileextension=".woff2" mimetype="application/font-woff" />     </staticcontent>   </system.webserver> 

sorry mistook dark theme visual studio , thought using asp.net

i leave code snippet because same problem faced asp.net users


Comments