2025-11-06 13:33:00 +09:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
import createNextIntlPlugin from 'next-intl/plugin';
|
|
|
|
|
|
|
|
|
|
const withNextIntl = createNextIntlPlugin('./src/i18n/request.ts');
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2025-11-24 18:57:35 +09:00
|
|
|
reactStrictMode: true, // 🧪 TEST: Strict Mode 비활성화로 중복 요청 테스트
|
2025-11-10 09:38:59 +09:00
|
|
|
turbopack: {}, // ✅ CRITICAL: Next.js 15 + next-intl compatibility
|
2025-11-11 18:55:16 +09:00
|
|
|
typescript: {
|
|
|
|
|
// ⚠️ WARNING: This allows production builds to complete even with TypeScript errors
|
|
|
|
|
// Only use during development. Remove for production deployments.
|
|
|
|
|
ignoreBuildErrors: true,
|
|
|
|
|
},
|
|
|
|
|
eslint: {
|
2025-11-18 14:17:52 +09:00
|
|
|
// ⚠️ WARNING: Temporarily ignore ESLint during builds for migration
|
|
|
|
|
// TODO: Fix ESLint errors after migration is complete
|
|
|
|
|
ignoreDuringBuilds: true,
|
2025-11-11 18:55:16 +09:00
|
|
|
},
|
2025-11-06 13:33:00 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default withNextIntl(nextConfig);
|