Next.js 15 REST API가 정상적으로 실행 중입니다.
GET /api/hello - 헬로 월드 APIPOST /api/hello - POST 요청 테스트# GET 요청
curl http://localhost:3000/api/hello
# POST 요청
curl -X POST http://localhost:3000/api/hello \
-H "Content-Type: application/json" \
-d '{"name": "test"}'