관리 메뉴

웹개발자의 기지개

[윈도우서버] iis 상에서 이미지 MIME 추가하기 - SVG 파일 본문

윈도우서버

[윈도우서버] iis 상에서 이미지 MIME 추가하기 - SVG 파일

http://portfolio.wonpaper.net 2024. 9. 3. 15:10

iis 상에서 MIME 을 추가하면 된다.

 

 

 

https://stackoverflow.com/questions/12328651/svg-is-not-working-on-iis-webserver-on-localhost

 

svg is not working on IIS webserver on localhost

I'm trying to set a ".svg" image as background-image using css, but it is not working. The url is valid and returns 200 status code and works on ".png" images. What is the problem?

stackoverflow.com

 

ASP.Net web.config 에서 SVG 추가하기

 

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

Comments