diff options
Diffstat (limited to 'app/api')
| -rw-r--r-- | app/api/projects/[projectId]/stats/route.ts | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/app/api/projects/[projectId]/stats/route.ts b/app/api/projects/[projectId]/stats/route.ts index d3d42a17..cd17e70d 100644 --- a/app/api/projects/[projectId]/stats/route.ts +++ b/app/api/projects/[projectId]/stats/route.ts @@ -267,13 +267,7 @@ export async function GET( recent, }; - return NextResponse.json(stats, { - headers: { - 'Cache-Control': 'no-store, no-cache, must-revalidate, proxy-revalidate', - 'Pragma': 'no-cache', - 'Expires': '0', - }, - }); + return NextResponse.json(stats); } catch (error) { console.error('통계 조회 오류:', error); |
