next.js/test/e2e/app-dir/with-exported-function-config/pages/api/page-route.ts
page-route.ts11 lines253 B
import { NextApiResponse, NextApiRequest } from 'next'

export default function handler(
  _req: NextApiRequest,
  res: NextApiResponse<{ hello: string }>
) {
  return res.status(200).json({ hello: 'world' })
}

export const config = { maxDuration: 1 }
Quest for Codev2.0.0
/
SIGN IN