0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

git push heroku masterをしたら、Precompiling assets failedが表示された時の対処法

Last updated at Posted at 2021-10-28

結論

webpackerをインストールしていませんでした。

エラー文

ターミナル

remote:  !     Precompiling assets failed.

#省略

error: failed to push some refs to ~~~

解決までの流れ

赤字で書かれていた上の2つの文をそれぞれGoogleで調べましたが、自分にあった対処法が見つけられませんでした。
色々と悩みましたが、ログを上から順に見ていくことにしました。
そうすると、大事なことが書かれている部分を発見しました!

ターミナル
#省略
remote:        webpack binstubs not found.
remote:        Have you run rails webpacker:install ?

「webpackないよ? rails webpacker:installした?」 と言われていました。

なので、

ターミナル
rails webpacker:install

無事にインストールされ、再び git push heroku master を実行しました。
今度こそ、成功しました。

最後に

エラーが出ると、どうしても赤字になっているところに注目してしまいますが、前後にも目を向けて対処していきたいです。

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?