CSS Font Awesome 404 error
▌Background
在未正確設定Web application時,會出現無法顯示字型和以下的404錯誤:
如果要正確顯示,必須進行以下設定。
▌Trouble shooting
▋CSS and Font
修改font-awesome.min.css 的字型路徑: (預設是 ‘../fonts/….’)
▋Web config
在WebConfig加入以下設定讓IIS支援MIME type : font-woff*。
<system.webServer>
<staticContent>
<remove fileExtension=".woff" />
<mimeMap fileExtension=".woff" mimeType="application/font-woff" />
<remove fileExtension=".woff2" />
<mimeMap fileExtension=".woff2" mimeType="application/font-woff2" />
</staticContent>
</system.webServer>
|
▌Reference
沒有留言:
張貼留言