diff --git a/getting-started/vercel.md b/getting-started/vercel.md index fd1de09e..d03c46fd 100644 --- a/getting-started/vercel.md +++ b/getting-started/vercel.md @@ -148,7 +148,11 @@ Next, you can utilize the `handle` function imported from `@hono/node-server/ver import { Hono } from 'hono' import { handle } from '@hono/node-server/vercel' - +export const config = { + api: { + bodyParser: false, + }, +} const app = new Hono().basePath('/api')