On my local machine, when I view my Rails App, my stylesheets are successfully linked at /assets/stylesheets/
but on Heroku, it is changed to /stylesheets/
Instead of checking in compiled assets into Git, first read this: https://devcenter.heroku.com/articles/ruby-support#plugin-injection-in-rails-4
You can either add this gem
gem 'rails_12factor'
or add this gem specifically
rails_serve_static_assets
or manually change the config in config/environments/production.rb
config.serve_static_assets = true