1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00

Fix preview mode status/mime issues for static files

This commit is contained in:
Thomas Reynolds 2011-06-05 12:54:18 -07:00
parent 3a7d30164d
commit 56b3a176fb

View file

@ -147,6 +147,8 @@ module Middleman
extensionless_path, template_engine = resolve_template(path)
if !::Tilt.mappings.has_key?(template_engine.to_s)
content_type mime_type(File.extname(path)), :charset => 'utf-8'
status 200
send_file File.join(Middleman::Server.views, path)
return
end