在Windows Azure网站中使用SVG

有谁知道是否有可能将SVG MIMEtypes添加到Windows Azure网站? 我尝试了一个web.config文件,但只是打破了我的网站。

这是目前预览的限制还是我错过了什么?

谢谢你的帮助!

在Windows Azure Web站点(在web.config级别),您可以执行的操作相当有限,但您应该允许在staticContent下添加MIMEtypes:

<configuration> <system.webServer> <staticContent> <remove fileExtension=".svg"/> <mimeMap fileExtension=".svg" mimeType="image/svg+xml" /> </staticContent> </system.webServer> </configuration>