I am using heroku for my rails app. And I precompile assets locally and then deploy.
So whenever I run
bundle exec rake assets:precompile
my URLs in scss are converted from relative paths to absolute paths in precompiled scss so
/home.png
is converted to http://localhost:3000/home.png
How can I get relative paths in the precompiled files too?