5
4

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 1 year has passed since last update.

Next.jsでImageタグを使うとWidthとHeightが必須になるのをどうにかしたい

Posted at

はじめに

個人開発でもNextを利用しているのですが、長年悩んできたことをチームの詳しい方に聞いたところ初めて知ったことがあったのでまとめます

問題

                <img
                  alt=""
                  src="/static/images/thank.png"
                />

これを<Image>に置き換えようとしたところWidthHeightのプロパティが必須なのでいれてくださいと怒られてしまいました

                <Image
                  alt=""
                  src="/static/images/thank.png"
                />

ここでWidthとHeightに数字をいれるとマジックナンバーになるのでどうすればよいかと悩みました

解決方法

すべてはドキュメントに書いてありました

import Image from 'next/image'
import profilePic from '../public/me.png'
 
export default function Page() {
  return (
    <Image
      src={profilePic}
      alt="Picture of the author"
      // width={500} automatically provided
      // height={500} automatically provided
      // blurDataURL="data:..." automatically provided
      // placeholder="blur" // Optional blur-up while loading
    />
  )
}

このように静的にパスを指定するのではなくダイナミックインポートすれば高さも幅も不要で、なおかつ画像が表示されるまではサスペンスのような小さい画像の表示をしてくれるようです

おわりに

やはりドキュメントをしっかり読むことが大切だなと気づきました

参考

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?