next/image
시작하기
// pages/index.js
import Image from 'next/image'
const Index = () => (
<div>
Next.js
<Image
src="/next.js.png"
width={250}
height={250}
/>
</div>
);
export default Index;
Required Props(필수 값)
src
url 입력
width
layout=“fill” 값이 없는 경우 정수값 필요
height
layout=“fill” 값이 없는 경우 정수값 필요