2

同様の問題に関する他の質問を読みましたが、それらの修正を試してみましたが役に立ちませんでした

私は 3.2.14 の Rails アプリを持っています。1 つの CSS ファイルを変更してからコードを heroku にプッシュすると、特定の CSS の変更が更新されません。私はすでに試しました:

-Verified that my git status is clean.
-- Tested in New Google Incognito Window for cache check
-- heroku restart
-- rake assets:precompile before deploying
-- Followed these instructions to specifically precompile in production environment
https://devcenter.heroku.com/articles/rails-asset-pipeline
-- Ran: 
bundle exec rake tmp:clear
bundle exec rake assets:clean RAILS_ENV=production
bundle exec rake assets:precompile RAILS_ENV=production 

読んでくれてありがとう。どんなガイダンスでも大歓迎です。

4

1 に答える 1

2

おそらく、あなたは今までにあなたの問題を解決しました。ただし、これらのコマンドを次の順序で試すとうまくいくと思います。

$bundle exec rake assets:precompile
$git add . 
$git commit -m "msg" 
$git push heroku master
于 2014-08-12T05:27:18.583 に答える