現在、bootstrap-sass gem を使用してフロント エンド ビューのスタイルを設定する Rails アプリケーションに取り組んでいます。ローカルで実行しているときは、ビューを参照しても問題ありません。Heroku のデプロイ後、次のエラーが表示されます。
ActionController::RoutingError (No route matches [GET] "/assets/bootstrap-responsive.css")
ここに私の application.rb ファイルのスニペットがあります:
# Enable the asset pipeline
config.assets.enabled = true
# Version of your assets, change this if you want to expire all your assets
config.assets.version = '1.0'
config.assets.compile = true
config.assets.initialize_on_precompile = false
アセットのプリコンパイルを使用して、Heroku のデプロイで bootstrap-sass を動作させる方法について何か考えはありますか?