LoginSignup
5
0

More than 3 years have passed since last update.

【Rails6】画面の左上に出てくる〇〇msの消し方

Posted at

こいつ

F3rRloyc.jpg

消し方

どうやら表示速度等のパフォーマンスを測定するrack-mini-profilerと言うgemが標準で入っていることで表示されているみたいなので、そいつを削除かコメントアウトで非表示にできます。

Gemfile
group :development do
  # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  gem 'web-console', '>= 4.1.0'
  # Display performance information such as SQL time and flame graphs for each request in your browser.
  # Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
  gem 'rack-mini-profiler', '~> 2.0' ←こいつを削除かコメントアウト。
  gem 'listen', '~> 3.3'
  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  gem 'spring'
end

はぁ〜〜すっきりした〜〜〜〜〜〜。

参考

rails6にて表示されるミリ秒を消したい
Railsのパフォーマンス調査でrack-mini-profilerを使ってみました。

5
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
0