From ff152512c0485bd733def407174dcb9c79ce3834 Mon Sep 17 00:00:00 2001 From: Adrian Short Date: Tue, 19 Mar 2013 18:39:02 +0000 Subject: [PATCH] Don't precompile pipeline assets (fix for Heroku Cedar) --- config/application.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/application.rb b/config/application.rb index 57fa486..52bc9f2 100644 --- a/config/application.rb +++ b/config/application.rb @@ -65,6 +65,9 @@ module Apollo # Enable the asset pipeline config.assets.enabled = true + # https://devcenter.heroku.com/articles/rails-asset-pipeline#troubleshooting + config.assets.initialize_on_precompile = false # Fix for Heroku Cedar + # Version of your assets, change this if you want to expire all your assets config.assets.version = '1.1'