8 lines
280 B
Ruby
8 lines
280 B
Ruby
if defined?(Rack::MiniProfiler)
|
|
Rack::MiniProfiler.config.tap do |config|
|
|
config.position = "top-right"
|
|
config.enable_hotwire_turbo_drive_support = true
|
|
config.pre_authorize_cb = -> (_env) { File.exist?(Rails.root.join("tmp/rack-mini-profiler-dev.txt")) }
|
|
end
|
|
end
|