twitter-bootstrap – 如何获取fontawesome工作在Azure网页部署?

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap – 如何获取fontawesome工作在Azure网页部署?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们使用Twitter Bootstrap和 FontAwesome支持图标。

当部署到我们的IIS服务器时,我需要添加MIME支持

当部署到Azure,它看起来不像我有这种能力,所以现在我的图标不显示,因为它似乎不知道如何使用字体。

解决方法

只需将以下内容添加到web.config …
<system.webServer>    
   <staticContent>
       <remove fileExtension=".svg" />
       <remove fileExtension=".eot" />
       <remove fileExtension=".woff" />
       <mimeMap fileExtension=".svg" mimeType="image/svg+xml"  />
       <mimeMap fileExtension=".eot" mimeType="application/vnd.ms-fontobject" />
       <mimeMap fileExtension=".woff" mimeType="application/x-woff" />
    </staticContent>
</system.webServer>
原文链接:https://www.f2er.com/bootstrap/234451.html

猜你在找的Bootstrap相关文章