Skip to content

Commit c2284dd

Browse files
committed
fix: build
1 parent d90557d commit c2284dd

File tree

1 file changed

+7
-0
lines changed
  • examples/api/src/app/api/hello-world

1 file changed

+7
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { NextRequest, NextResponse } from "next/server";
2+
3+
export async function GET(request: NextRequest) {
4+
return NextResponse.json({
5+
data: "pong",
6+
});
7+
}

0 commit comments

Comments
 (0)