我在资产中添加了新图像,但是在推动Heroku之后,它们会在那里停留几个小时并再次显示旧图像并且我还编译了Heroku资产但是几小时后新图像仍然消失
RAILS_ENV=production bundle exec rake assets:precompile
答案 0 :(得分:1)
在production.rb文件中将这两行从false编辑为true。
config.assets.compile = true
config.assets.digest = true
其次,如果你的图像有这样的语法
background: url("imgo.jpg")
将其更改为
background: image-url("image.jpg")
找到解决方案here