diff options
Diffstat (limited to 'src/guff/asset-mime-type.cr')
-rw-r--r-- | src/guff/asset-mime-type.cr | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/guff/asset-mime-type.cr b/src/guff/asset-mime-type.cr new file mode 100644 index 0000000..ee3826c --- /dev/null +++ b/src/guff/asset-mime-type.cr @@ -0,0 +1,20 @@ +module Guff::AssetMimeType + TYPES = { + ".js" => "text/javascript; charset=utf-8", + ".css" => "text/css; charset=utf-8", + ".html" => "text/html; charset=utf-8", + ".png" => "image/png", + ".jpeg" => "image/jpeg", + ".jpg" => "image/jpeg", + ".otf" => "application/vnd.ms-opentype", + ".eot" => "application/vnd.ms-fontobject", + ".svg" => "image/svg+xml", + ".ttf" => "application/x-font-ttf", + ".woff" => "application/font-woff", + ".woff2" => "application/font-woff", + } + + def self.from_path(path : String) : String + TYPES[File.extname(path)]? || "application/octet-stream" + end +end |