|
1234567891011121314151617181920212223242526272829303132333435363738394041 |
- Rails.application.configure do
-
-
-
-
-
- config.cache_classes = false
-
-
- config.eager_load = false
-
-
- config.consider_all_requests_local = true
- config.action_controller.perform_caching = false
-
-
- config.action_mailer.raise_delivery_errors = false
-
-
- config.active_support.deprecation = :log
-
-
- config.active_record.migration_error = :page_load
-
-
-
-
- config.assets.debug = true
-
-
-
- config.assets.digest = true
-
-
-
-
- config.assets.raise_runtime_errors = true
-
-
-
- end
|