File size: 267 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { NextResponse } from 'next/server'
export async function POST() {
const data = await fetch(
'https://next-data-api-endpoint.vercel.app/api/random',
{
method: 'POST',
}
).then((res) => res.text())
return NextResponse.json({ data })
}
|