はじめに v13.4.8 からunstable_getImgProps というメソッドが next/image から提供されるようになりました。 これは next/image のコンポーネントが内部で処理していた img 要素に渡す props を取得するためのメソッドです。 簡単な例として以下のように使用できます。 import { unstable_getImgProps as getImgProps } from "next/image"; export default function Page() { const { props } = getImgProps({ src: "/sample.png", alt: "sample", width: 800, height: 400, }); return <img {...props} />; } 具体的な実用例としては大きく 3