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?

next/image, hostname "avatars.githubusercontent.com" is not configured under images

Posted at
Error: Invalid src prop (https://avatars.githubusercontent.com/u/59593038?v=4) on next/image, hostname "avatars.githubusercontent.com" is not configured under images in your next.config.js
See more info: https://nextjs.org/docs/messages/next-image-unconfigured-host

このエラーは、Next.js の next/image コンポーネントがnext.config.jsにホスト名 avatars.githubusercontent.comを許可されていないために発生している

解決方法

next.config.jsにimages.domains を追加し、GitHub のアバターのホストを許可する。

import type { NextConfig } from "next";

const nextConfig: NextConfig = {
+  images: {
+    domains: ["avatars.githubusercontent.com"],
+  },
};

export default nextConfig;

そのあとサーバーの再起動も行う

npm run dev
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?