我config.ru
的如下:
use Rack::Static,
:urls => ["/images"],
:root => "public"
run lambda { |env|
[
200,
{
'Content-Type' => 'text/html',
'Cache-Control' => 'public, max-age=86400'
},
File.open('public/index.html', File::RDONLY)
]
}
当我在本地加载它时,网站看起来不错,但是当我在 Heroku 上运行它时,我在浏览器控制台中收到以下 CSS 文件的错误消息:
Resource interpreted as Stylesheet but transferred with MIME type text/html.
知道为什么我会收到这些错误吗?
示例站点:http ://salus8.heroku.com 。