Heroku部署后CSS不会更新

时间:2013-11-13 06:13:56

标签: css ruby-on-rails git heroku

我已经阅读了类似问题的其他问题并尝试了修复无效

我有一个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 

感谢阅读。任何指导都将非常感谢。

1 个答案:

答案 0 :(得分:2)

可能你现在已经解决了问题。但是我相信按以下顺序尝试这些命令会有效。

$bundle exec rake assets:precompile
$git add . 
$git commit -m "msg" 
$git push heroku master