xxxxxxxxxx
// Inside app/api/route.js
// In postman make a POST req with a body @ http://localhost:3000/api
export async function POST(req) {
const body = await req.json();
console.log(body);
return NextResponse.json({ message: "Awesome" });
}