5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ブラウザのfaviconキャッシュを消す

Last updated at Posted at 2019-06-07

faviconが消えない。

Webアプリを作ってて仕上げにアイコン画像を設定するも、ブラウザの方はたとえばVue.jsで作ったシステムだといつまでたっても緑のVアイコンが変わらないなんてことがよく起きますよね。(特に開発環境localhost:xxxxとか)

これですw

ブラウザのタブ部分とかに表示されてるfaviconは、強制リロードしてもキャッシュを削除してリロードしてもなかなか反映されないです。

そんな時、私はブラウザのfaviconキャッシュを消すようにしてます。

パスの備忘録も兼ねて...

Chrome

  • よくわからないがjournalも削除してる。
rm -f ~/Library/Application\ Support/Google/Chrome/Default/Favicons
rm -f ~/Library/Application\ Support/Google/Chrome/Default/Favicons-journal

Safari

  • ディレクトリごと削除。
rm -rf ~/Library/Safari/Favicon\ Cache

Firefox

  • プロファイルが個別なのがいやらしい、とにかく全部消す。
rm -f ~/Library/Application\ Support/Firefox/Profiles/*.default*/favicons.sqlite

あ、Macしかわかりません。

5
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?