Skip to content

Instantly share code, notes, and snippets.

@yusukebe
Created March 20, 2024 13:06
Show Gist options
  • Save yusukebe/77ddb9011a17c52393399f57f9a11ace to your computer and use it in GitHub Desktop.
Save yusukebe/77ddb9011a17c52393399f57f9a11ace to your computer and use it in GitHub Desktop.
import { Hono } from 'hono'
import { handle } from 'hono/cloudflare-pages'
const app = new Hono().basePath('/api')
app.get('/', (c) => {
return c.json({
from: 'hono'
})
})
export const onRequest = handle(app)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment