We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72747e4 commit f1c4ab4Copy full SHA for f1c4ab4
1 file changed
apps/ticket/src/app/api/reissue/route.ts
@@ -3,6 +3,10 @@ import { NextResponse } from "next/server";
3
4
import { API_URL } from "@/data/constants";
5
6
+export async function HEAD() {
7
+ return new Response(null, { status: 200 });
8
+}
9
+
10
/**
11
* vercel Lambda 깨우기 용 ping API (5분 주기로 호출)
12
* 브라우저에서 주기적으로 호출하여 Lambda 깨우기 (Cold Start 방지)
0 commit comments