2017-08-01 16 views

回答

0

我解決了這個問題。 在IIS,你可以通過添加申報WOFF,woff2,JSON文件的MIME類型以下到項目的web.config:

<system.webServer> 
    <staticContent> 
    <remove fileExtension=".woff" /> 
    <mimeMap fileExtension=".woff" mimeType="font/woff" /> 
    <remove fileExtension=".woff2" /> 
    <mimeMap fileExtension=".woff2" mimeType="font/woff2" /> 
    <remove fileExtension=".json" /> 
    <mimeMap fileExtension=".json" mimeType="application/json" /> 
    </staticContent> 
</system.webServer>