I have a Rails 4 application and am using the less-rails
gem. In main.css.less
, I add a background image to the site using:
body {
background-image: image-url("background.jpg");
}
Everything works fine locally, but when I push up to my server with precompiled assets, the image url is not updating to include the hash. That is, the image now lives at public/assets/background-074c0b767cd8cfb2da93b37ea3596326.jpg
but my css file still says url(/assets/background.jpg)
.
The link below seemed very promising, but none of the recommended solutions have worked (most of them are specific to sass
, although I did try image-url
, asset-url
and their respective -path
's).
How to reference images in CSS within Rails 4
Any ideas?