LoginSignup
17
15

More than 3 years have passed since last update.

Herokuに画像が表示されないときの対処法(Ruby on rails)

Posted at
1 / 2

はじめに

先日、Railsで作っていたアプリの画像がHerokuにあげると表示されないということが起きました。
今回は、そのときの対処法について書きたいと思います。

対処法

configファイルの書き換え

作成中のアプリのフォルダ内にある、
config/environments/production.rbを開くと、

config.assets.compile = false

という記述があります。
これを

config.assets.compile = true

と書き直すとうまくいきました。

最後に

今回変更したファイルはアプリの製作中はあまり扱わないファイルなので、皆さんも注意してくださいね。

17
15
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
17
15