Sha256: d6622f4b06d5af9cf4165fd83f027798ca524df7bbe73da33bf3880b5c1a2265
Contents?: true
Size: 607 Bytes
Versions: 4
Compression:
Stored size: 607 Bytes
Contents
# frozen_string_literal: true Rails.application.configure do config.cache_classes = true config.eager_load = false config.public_file_server.enabled = true config.public_file_server.headers = { 'Cache-Control' => 'public, max-age=3600' } config.consider_all_requests_local = true config.action_controller.perform_caching = false config.action_dispatch.show_exceptions = false config.action_controller.allow_forgery_protection = false config.action_mailer.perform_caching = false config.action_mailer.delivery_method = :test config.active_support.deprecation = :stderr end
Version data entries
4 entries across 4 versions & 1 rubygems