Last Updated: February 25, 2016
·
689
· nhc

Rails 4 & Heroku. The Missing Assets

Out of the box Rails 4 and Heroku don't play nice with assets at all.

Just do this to get it working

Gemfile

gem ‘rails_12factor’, group: :production

/config/production.rb

config.serve_static_assets = true

Thats it.