我已阅读过类似问题的其他问题,并尝试对其进行修复,但无济于事
我有一个3.2.14 Rails应用程序,当我在一个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
谢谢阅读。任何指导将不胜感激。
最佳答案
可能您现在已经解决了问题。但是,我相信按以下顺序尝试这些命令是可行的。
$bundle exec rake assets:precompile
$git add .
$git commit -m "msg"
$git push heroku master