kohigowild
빌드 시 정적(static) 이미지가 누락되는 문제 본문
Problem
- Error: Image import ... is not a valid image file. The image may be corrupted or an unsupported format.
- build 되는 과정에서 public 폴더 안에 있는 static 이미지가 누락되는 문제
Reason
- Disable Static Imports
- disableStaticImages 속성이 true로 되어 있어서 정적 이미지를 가져올 수 없었던 걸로 추측됨
Try to solve
invalid-images-config | Next.js
https://github.com/vercel/next.js/issues/44012
- config 변경 및 추가
images: {
deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],
imageSizes: [16, 32, 48, 64, 96, 128, 256, 384],
domains: [],
path: '/_next/image',
loader: 'default',
loaderFile: '',
disableStaticImages: false,
minimumCacheTTL: 60,
formats: ['image/webp'],
dangerouslyAllowSVG: false,
contentSecurityPolicy: "default-src 'self'; script-src 'none'; sandbox;",
contentDispositionType: 'inline',
remotePatterns: [],
unoptimized: false,
},
'React > NextJS' 카테고리의 다른 글
Embla Carousel 사용법 정리 (Feat. Next.js) (0) | 2023.04.14 |
---|---|
NextJS에서 구글 폰트 적용 시 구문 오류 (0) | 2023.03.16 |