next.config.js 에
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
domains: ['www.sample.com'],
},
}
export default nextConfig;
설정을 하고
import Image from 'next/image'
function MyComponent() {
return (
<Image
src="https://www.sample.com/my-image.jpg"
alt="Description of the image"
width={500}
height={300}
/>
)
}
export default MyComponent;
으로 표시한다.
'Next.js[react]' 카테고리의 다른 글
React에서 터치 스와이프 구현하기 2 (유한 상태 머신으로 리팩토링) (0) | 2024.07.01 |
---|---|
next/image 컴포넌트 이미지의 비율을 유지 (0) | 2024.06.27 |
aspect-ratio: 372 / 220; tailwind에서 설정하는 (0) | 2024.06.27 |
Target container is not a DOM element (0) | 2024.06.27 |
tailwind 적용안될때 (0) | 2024.06.26 |