Merge pull request #276 from scan/master

Added SVG image content type
This commit is contained in:
Greg Weber 2012-02-19 14:56:45 -08:00
commit 2fac449ad6

View File

@ -19,6 +19,7 @@ module Yesod.Content
, typeJpeg
, typePng
, typeGif
, typeSvg
, typeJavascript
, typeCss
, typeFlv
@ -196,6 +197,9 @@ typePng = "image/png"
typeGif :: ContentType
typeGif = "image/gif"
typeSvg :: ContentType
typeSvg = "image/svg+xml"
typeJavascript :: ContentType
typeJavascript = "text/javascript; charset=utf-8"