I have the background image for a basic rails site I made working fine but when I pushed it up to heroku it gave me the following error
Failed to load resource: the server responded with a status of 404 (Not Found) http://young-oasis-2855.herokuapp.com/assets/joy.jpg
here is the code from my css file
body {
background: url(/assets/joy.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
I have several other pics uploaded and working fine anyone know why this is not working on heroku, but is still working locally?