#概要
背景画像について
local → 表示○
Heroku上 → 表示×
Heroku上で背景画像が表示されないことの解決方法を、本記事では述べています。
#バージョン
rubyのバージョン ruby-2.6.5
Railsのバージョン Rails:6.0.0
#解決方法
config/environments/production.rbを以下のように書き換える。
(変更前)config.assets.compile = false
↓
(変更後)config.assets.compile = true
config/environments/production.rb
〜省略〜
# Do not fallback to assets pipeline if a precompiled asset is missed.
config.assets.compile = true # =false → trueに変更
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
〜省略〜
その後、デプロイして背景画像が表示されていれば完了です。
以上です。