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)
Was this page helpful?