答案 0 :(得分:1)
您只需要在web.config中添加woff和woff2 MIME类型,或者直接在webserver配置文件中添加它们
<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用户可能会遇到同样的问题