hono/vercel How to change the PORT for local dev?

```ts import { Hono } from 'hono' import { handle } from 'hono/vercel' export const config = { runtime: 'edge', } const app = new Hono().basePath('/api') app.get('/', (c) => { return c.json({ message: 'Hello Hono!' }) }) export default handle(app)
0 Replies
No replies yetBe the first to reply to this messageJoin

Did you find this page helpful?