I want to abandon the Herokupre-compilation of assets to pre-compile them when developing and clicking them on Heroku. I understand that the main procedure
RAILS_ENV=production bundle exec rake assets:precompile
git add .
git commit -m 'Add precompiled Assets'
git push production master
However, this destroys any existing assets on the hero. For example, images referenced by old letters are destroyed. Is there a way to do this and ensure continuity of inherited assets?
source
share