I deployed my app to Heroku but only the assets\\images are loading. The CSS files (especially the one that contains 90% of the CSS, custom.css) are not being loaded. I precompi
Update your gemfile with
*group :production, :staging do gem 'rails_12factor' end*
Install your bundle and push it to heroku
Installing rails_serve_static_assets (0.0.1) Installing rails_stdout_logging (0.0.1) Installing rails_12factor (0.0.2)
It helps me when I had same problem.