123456789101112131415161718192021222324252627282930313233343536373839404142 |
- 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
|