# frozen_string_literal: true

Rails.application.configure do
  next unless ENV['RAILS_ENV'] == 'development'

  domain = ENV.fetch('SUTTY', 'sutty.nl')

  config.hosts << domain
  config.hosts << "panel.#{domain}"
  config.hosts << "api.#{domain}"
end