How to disable the asset pipeline on heroku?

Heroic cedar pre-arranged my assets, although I wrote:

config.assets.enabled = false

How to disable the asset function?

+5
source share
1 answer

The problem is that the application configuration is not available when compiling slug. This has been recently reviewed from http://devcenter.heroku.com/articles/labs-user-env-compile , but I'm not sure if this helps here.

For more information on the Heroku pipeline, see http://devcenter.heroku.com/articles/rails31_heroku_cedar

, , public/assets/manifest.yml - , , config.assets.enabled .

+4

All Articles