Use SVG in Windows Azure Websites

后端 未结 1 960
有刺的猬
有刺的猬 2020-12-03 09:37

Does anyone know if it is possible to add the SVG mime type to a Windows Azure Website? I tried with a web.config file but that only broke my website.

Is this a limi

相关标签:
1条回答
  • 2020-12-03 10:14

    What you can do in Windows Azure Websites (on web.config level) is pretty limited, but you should be allowed to add the mime type under staticContent:

    <configuration>
       <system.webServer>
          <staticContent>
             <remove fileExtension=".svg"/>
             <mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
          </staticContent>
       </system.webServer>
    </configuration>
    
    0 讨论(0)
提交回复
热议问题