Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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 })
}