Vercel 배포 next.config.js 설정
·
Project/JUSEYO
VECEL 배포 과정은 매우 오류가 많다 (깐깐함)오류 방지을 위해 next.config.js에 미리 설정// next.config.js/** @type {import('next').NextConfig} */const nextConfig = { images: { // 여기에 본인이 실제 쓰는 S3 버킷 호스트명을 모두 나열하세요. domains: [ "example-bucket.s3.ap-northeast-2.amazonaws.com", "juseyo.s3.ap-northeast-2.amazonaws.com", // ...(추가 버킷이 있으면 계속) ], }, eslint: { // 빌드 중에 ESLint 검사를 건너뜁니다 ignoreDuring..