2017-08-01 17 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>