Skip to Content
Mastering SVG
book

Mastering SVG

by Rob Larsen
September 2018
Beginner to intermediate
312 pages
7h 22m
English
Packt Publishing
Content preview from Mastering SVG

IIS

Adding the correct media type in IIS can happen in two ways. You can add the media type using the IIS manager (https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc753281(v=ws.10)) or you can add the following entries to web.config:

<configuration>    <system.webServer>        <staticContent>            <remove fileExtension=".svg"/>            <mimeMap fileExtension=".svg" mimeType="image/svg+xml"/>            <remove fileExtension=".svgz"/>            <mimeMap fileExtension=".svgz" mimeType="image/svg+xml"/>        </staticContent>    </system.webServer></configuration>
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Modern SVG

Modern SVG

Amelia Bellamy-Royds, Kurt Cagle
Using SVG with CSS3 and HTML5

Using SVG with CSS3 and HTML5

Amelia Bellamy-Royds, Kurt Cagle, Dudley Storey
SVG Text Layout

SVG Text Layout

Amelia Bellamy-Royds, Kurt Cagle

Publisher Resources

ISBN: 9781788626743Supplemental Content