diff --git a/next.config.ts b/next.config.ts index 680c176..9d20e0c 100644 --- a/next.config.ts +++ b/next.config.ts @@ -5,14 +5,18 @@ const nextConfig: NextConfig = { scrollRestoration: false, }, images: { - domains: ['team2-app-s3-bucket.s3.ap-northeast-2.amazonaws.com'], + // 외부 이미지 최적화 완전 비활성화 (Vercel 유료 기능 회피) + unoptimized: true, + domains: [ + 'team2-app-s3-bucket.s3.ap-northeast-2.amazonaws.com', + 'team2-app-s3-bucket.s3.amazonaws.com', + ], remotePatterns: [ { protocol: 'https', hostname: 'www.thecocktaildb.com', }, ], - qualities: [25, 50, 75, 90, 100], }, env: { NPUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL, diff --git a/src/domains/community/components/post-info/PostInfo.tsx b/src/domains/community/components/post-info/PostInfo.tsx index c2d3f87..e6dc048 100644 --- a/src/domains/community/components/post-info/PostInfo.tsx +++ b/src/domains/community/components/post-info/PostInfo.tsx @@ -17,7 +17,7 @@ function PostInfo({ }: Props) { return (