不能得到glyphicons-halflings-regular.woff2

时间:2016-07-21 14:41:25

标签: twitter-bootstrap-3 glyphicons

我收到此错误消息 - 无法加载glyphicons ...为什么?

enter image description here

以下是我的代码的文件夹结构

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:1)

您只需要在web.config中添加woff和woff2 MIME类型,或者直接在webserver配置文件中添加它们

  <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>

抱歉,我把你的黑暗主题误认为是visual studio,我以为你在使用ASP.NET

我保留此代码段,因为ASP.NET用户可能会遇到同样的问题