I am using image_tag in Rails. Locally it resolves to /assets/image.img. On Heroku it resolves to /images/image.img.
I have the asset pipeline turned off (this project will eventually leave Rails).
How can I make local resolve the same as production?
This fixed my problem. I guess this has something to do with the pipeline being turned off. Any comments on this are appreciated to help my understanding.