Herst上不会显示Bootstrap jumbotron背景图像

时间:2014-02-02 16:05:19

标签: css twitter-bootstrap-3

我的jumbotron背景图像在本地完美运行,并且在Bootstrap 2作为英雄单位时效果很好。现在,当我部署到Heroku时,我得到一个空白的jumbotron。这是我的CSS:

.jumbotron {
height: 400px;
width: auto;
padding-top: 10px;
padding-left: 15px;
background-image: url(ttable.jpg);
background-repeat: no-repeat;
color: black;  
}

切换到Bootstrap 3后,有什么变化吗?

1 个答案:

答案 0 :(得分:5)

我在谷歌搜索时找到了解决方法。我在这里找到它:http://natashatherobot.com/rails-4-heroku-assets-not-found-css-image/

将production.rb文件中的config.assets.compile更改为true,如下所示:

# config/environments/production.rb
YOURAPPLICATION::Application.configure do

   # your config settings

   config.assets.compile = true

   # your other config settings
end