0

环境:heroku(雪松)

导轨:4.0

红宝石:2.0

在我的 production.rb 我有

config.action_controller.asset_host = "//#{ENV['FOG_DIRECTORY']}.s3.amazonaws.com"

对于我的主要布局中的 image_tag 助手等,一切都指向正确的资产位置(使用 as3)。

问题是我的 css 文件:scroll-up-down.css.erb 似乎没有使用正确的资产路径。

.nav_up{
    background: #fff url(<%= asset_path 'scroller-arrow_up.png' %>) no-repeat 50% 50%;
    left:30px;
    }

解决为

'/assets/scroller-arrow_up.png'

在编译的css文件中?

有任何想法吗?其他一切都很好。

4

1 回答 1

0

清理资产并在另一个预编译后再次推送。它现在似乎起作用了。

于 2013-07-09T22:12:24.683 回答