首页 > 代码库 > ASP.NET 发布到IIS后支撑woff 的解决方案

ASP.NET 发布到IIS后支撑woff 的解决方案

<system.webServer>
    <staticContent>
        <remove fileExtension=".woff" />
        <mimeMap fileExtension=".woff" mimeType="application/x-woff" />
    </staticContent>
</system.webServer>

在 system.webServer 中增加 woff 的相应信息即可

ASP.NET 发布到IIS后支撑woff 的解决方案