Serve sourcemaps as JSON so extensions which rely on mime-type function correctly

This commit is contained in:
Thomas Reynolds 2015-02-13 14:28:12 -08:00
parent eede4a8c5d
commit 5b39a33ab6

View file

@ -21,6 +21,9 @@ module Middleman
::Rack::Mime::MIME_TYPES['.html'] = 'text/html; charset=utf-8'
::Rack::Mime::MIME_TYPES['.htm'] = 'text/html; charset=utf-8'
# Sourcemap format
::Rack::Mime::MIME_TYPES['.map'] = 'application/json; charset=utf-8'
app.extend ClassMethods
app.extend ServerMethods