I am using rails 4.2.0 + amazon clodfront + Heroku.
In my config/environments/production.rb i have this config set to true.
# Don't fallback to assets pipeline if a precompiled asset is missed
config.assets.compile = true
I frequently asks myself whether this should be set to false or not? As I am confused whether should i manually compile the assets and then push it to heroku, or set it to true?
Please suggest me the best practice.