메일 관리 작업 저장용 커밋

This commit is contained in:
leeheejin
2025-10-01 16:15:53 +09:00
parent 2a8841c6dc
commit 0209be8fd6
65 changed files with 8636 additions and 2145 deletions

View File

@@ -18,7 +18,15 @@ const nextConfig = {
outputFileTracingRoot: undefined,
},
// 프록시 설정 제거 - 모든 API가 직접 백엔드 호출
// API 프록시 설정 - 백엔드로 요청 전달
async rewrites() {
return [
{
source: "/api/:path*",
destination: "http://host.docker.internal:8080/api/:path*",
},
];
},
// 개발 환경에서 CORS 처리
async headers() {