mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 18:22:53 +00:00
9 lines
233 B
Ruby
9 lines
233 B
Ruby
# frozen_string_literal: true
|
|
|
|
if Rails.env.development? && ENV['DISABLE_MINI_PROFILER'].blank?
|
|
require 'rack-mini-profiler'
|
|
|
|
# initialization is skipped so trigger it
|
|
Rack::MiniProfilerRails.initialize!(Rails.application)
|
|
end
|