[ASP.NET MVC] 解決woff問題

ASP.NET MVC 解決woff問題

woff question

Question:  在Chrome瀏覽器按下F12,若發現該頁面存在以下問題的解決方法:

Solution:

在該專案內的 Web.config 添加以下程式碼,即可解決此問題

<staticContent>

  <remove fileExtension=".woff" />

  <!-- In case IIS already has this mime type -->

  <mimeMap fileExtension=".woff" mimeType="application/x-font-woff" />

  <remove fileExtension=".woff2" />

  <!-- In case IIS already has this mime type -->

  <mimeMap fileExtension=".woff2" mimeType="application/x-font-woff2" />

</staticContent>

==============================================================================

關鍵字:  mvc woff  

參考網站:   

http://stackoverflow.com/questions/4015816/why-is-font-face-throwing-a-404-error-on-woff-files

https://gist.github.com/belmer/8764833

如果這篇文章有幫助到你,想支持一下作者可以幫忙點擊側欄的「 Goolgle AdSense 」廣告 😄

如果你喜歡這篇文章可以點擊「分享」按鈕,來分享到你的網路社群
(以上文章內容如有謬誤,敬請不吝指教)