I have stylesheet_link_tag(:all) in my layout.
It behaves as expected on local machine, even when I run it in production environment (rails s -e production).
By expected I mean that it emits all the links to existing stylesheets without concating them into all.css and it does not emit the link to all.css.
But when I deploy it to Heroku, the result is the same plus a link to all.css in the beginning. This is what I don't want and don't expect, especially when production environment on local machine does not emit it.
So the question is how do I get rid of all.css link on Heroku without specifying all files manually?
Thanks.