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

【Next.js + Rails + CarrierWave + S3】 Next.jsのnext/imageで画像を表示させる方法

Posted at

初めに

 この記事ではNext.js が提供しているImage コンポーネント (next/image)についてのお話です。
 __imgタグのこと__ではないので注意してください。

内部の画像を表示

 内部ではルートディレクトリ配下にあるpublicを基準にして表示させることができます。
 とても簡単ですね
 【例】
 /public/images/test.png

test.js
<Image src={'/images/test.png'} alt="sample" width={300} height={300} />

外部の画像を表示

 公式にも書いてある通り
 ルートディレクトリ直下にnext.config.jsを作り
 【例】
 example.comの場合 

next.config.js
module.exports = {
  images: {
    domains: ["example.com"]
  },
}

こんな感じでドメインを指定してやると認識してくれます。

S3の場合

 問題はこちらです。
 このままいくとバケットのURLをそのままドメインに突っ込みたくなるところをぐっとこらえて。
 こうです。

next.config.js
module.exports = {
  images: {
    domains: ["s3.[region].amazonaws.com"]
  },
}

 東京の場合ap-northeast-1これをregionのところに入れてあげればいいですね。

終わりに

 特にはまっていませんが、ちょっと調べる羽目になったので誰かのお役に立てれば幸いです。

 
 

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?