Heroku资产未加载

时间:2016-08-10 05:37:51

标签: ruby-on-rails-3

我在资产中添加了新图像,但是在推动Heroku之后,它们会在那里停留几个小时并再次显示旧图像并且我还编译了Heroku资产但是几小时后新图像仍然消失 RAILS_ENV=production bundle exec rake assets:precompile

1 个答案:

答案 0 :(得分:1)

在production.rb文件中将这两行从false编辑为true。

  config.assets.compile = true
  config.assets.digest = true

其次,如果你的图像有这样的语法

background: url("imgo.jpg") 

将其更改为

 background: image-url("image.jpg")

找到解决方案here