0
0

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 3 years have passed since last update.

Gatsby で Picturefill

Posted at

なんだかんだで、IE11まだ対応しますよね :angel:
で、Picturefill が必要だったんですね。

Gatsby と一緒に使おうと思ってググったけど、どストライクなの見つからなかったの :poop:

いくつか見つかった記事を参考に色々試したけども、なんか違う。

useEffectpicturefill() しようとしたら、
import 'picturefill' 書いた時点で window がないとビルドでこける。(開発時は大丈夫)

gatsby-browser.jsonClientEntryonRouteUpdatepicturefill() 呼ぶと動く。けど、動的に picture 要素足した(変更した)場合、適応されない。

などなど、紆余曲折ありつつ、 picturefillmutation plugin を使う方法にたどり着いた。
このプラグインは picturefill() を自動でやってくれるというもの。

gatsby-browser.js でインポートするだけ :rocket:

import 'picturefill'
import 'picturefill/dist/plugins/mutation/pf.mutation'
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?