我的heroku网站的背景图片存在问题,本地使用
background-image: url('background_stripe.png');
有效但部署时文件已损坏
我尝试过使用
background-image: image-url('background_stripe.png');
background-image: url(image-url('background_stripe.png'));
background-image: url(image_url('background_stripe.png'));
没有一个在本地或在heroku上工作。
使用bash我发现heroku已将图像文件命名为background_stripe.png,但它没有哈希值且图像已损坏
答案 0 :(得分:49)
在你的production.rb中添加以下行
config.serve_static_assets = true
config.assets.compile = true
或者您可以尝试使用
在本地预编译资产RAILS_ENV=production rake assets:precompile
答案 1 :(得分:5)
当您的资产被编译用于生产时,为了版本控制,他们会在其末尾添加“摘要”。如果您在视图中定义了类,则应使用asset_path('background_stripe.png')
;如果您在the docs中引用的SCSS文件中定义类,则应使用image-url('background_stripe.png')
。