diff options
Diffstat (limited to 'config/environments/development.rb')
-rw-r--r-- | config/environments/development.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/environments/development.rb b/config/environments/development.rb index 494ddd72556..bd18efc561d 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -34,12 +34,12 @@ Rails.application.configure do config.assets.raise_runtime_errors = true # For having correct urls in mails - config.action_mailer.default_url_options = { host: 'localhost', port: 3000 } + config.action_mailer.default_url_options = {host: "localhost", port: 3000} # Open sent mails in browser config.action_mailer.delivery_method = :letter_opener_web # Don't make a mess when bootstrapping a development environment - config.action_mailer.perform_deliveries = (ENV['BOOTSTRAP'] != '1') - config.action_mailer.preview_path = 'app/mailers/previews' + config.action_mailer.perform_deliveries = (ENV["BOOTSTRAP"] != "1") + config.action_mailer.preview_path = "app/mailers/previews" config.eager_load = false |