当我建立时, 一些文件(例如:woff2,woff,json)已经存在, 但我的网站不了解他们。 我该怎么办?
my .angular-cli.json
"assets": [
"assets",
"favicon.ico"
],
答案 0 :(得分:0)
我解决了这个问题。 在IIS中,您可以通过将以下内容添加到项目的web.config来声明woff,woff2,json文件的mime类型:
<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>