next.js/test/e2e/app-dir/app-static/app/route-handler/post/route.js
route.js13 lines267 B
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 })
}
Quest for Codev2.0.0
/
SIGN IN