2016-07-21 69 views

回答

1

只要你需要WOFF和woff2 MIME類型添加到您的web.config中或直接加入我的代碼的文件夾結構在您的網絡服務器配置文件中

<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和我還以爲你是用ASP.NET

我離開這個代碼片段,因爲同樣的問題可以通過ASP.NET用戶面臨

+1

謝謝!!工作完美! – monstro