- 40+ actions.ts 파일을 fetchWrapper 패턴으로 마이그레이션 - 토큰 리프레시 캐싱 로직 추가 (refresh-token.ts) - ApiErrorContext 추가로 전역 에러 처리 개선 - HR EmployeeForm 컴포넌트 개선 - 참조함(ReferenceBox) 기능 수정 - juil 테스트 URL 페이지 추가 - claudedocs 문서 업데이트 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
27 lines
927 B
TypeScript
27 lines
927 B
TypeScript
import type { NextConfig } from "next";
|
|
import createNextIntlPlugin from 'next-intl/plugin';
|
|
|
|
const withNextIntl = createNextIntlPlugin('./src/i18n/request.ts');
|
|
|
|
const nextConfig: NextConfig = {
|
|
reactStrictMode: true, // 🧪 TEST: Strict Mode 비활성화로 중복 요청 테스트
|
|
turbopack: {}, // ✅ CRITICAL: Next.js 15 + next-intl compatibility
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: '10mb', // 이미지 업로드를 위한 제한 증가
|
|
},
|
|
},
|
|
typescript: {
|
|
// ⚠️ WARNING: This allows production builds to complete even with TypeScript errors
|
|
// Only use during development. Remove for production deployments.
|
|
ignoreBuildErrors: true,
|
|
},
|
|
eslint: {
|
|
// ⚠️ WARNING: Temporarily ignore ESLint during builds for migration
|
|
// TODO: Fix ESLint errors after migration is complete
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
};
|
|
|
|
export default withNextIntl(nextConfig);
|