rsnext/test/e2e/app-dir/with-exported-function-config/pages/api/page-route.ts
Florentin / 珞辰 ffd504c43f
[functions-config-manifest] use correct extra config for pages router (#54786)
When using page routes we need to pass the contents of the `export const config` to the `extraConfig` populating the functions config manifest rather then relying on named exports like in app router.
2023-09-05 14:13:37 +00:00

10 lines
253 B
TypeScript

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 }