import { NextRequest, NextResponse } from 'next/server'
export async function POST(request: NextRequest) {
const body = await request.text()
return new NextResponse(
JSON.stringify({
message: 'Hello World',
bodySize: body.length,
}),
{
status: 200,
headers: { 'Content-Type': 'application/json' },
}
)
}