2016-07-21 2 views
0

このエラーメッセージが表示されています - グリフコンを読み込めません...なぜですか?以下はglyphicons-halflings-regular.woff2を取得できません

enter image description here

私のコード、あなたのweb.configファイルにWOFFとwoff2 MIMEタイプを追加したり、それらを直接追加する必要があるだけで

enter image description here

enter image description here

答えて

1

のフォルダ構造でありますあなたのWebサーバーの設定ファイルで

<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のために、あなたの暗いテーマを間違えたと私はあなたが

+1

ありがとう同じ問題はASP.NETのユーザーが直面する可能性があるため、私は、このコードスニペットを残すASP.NET

使用していたと思いました!完璧に働いた! – monstro

関連する問題