You can use sentry for page functions. I'm using it with Hono. ```typescript import { Hono } from 'h

You can use sentry for page functions. I'm using it with Hono.
import { Hono } from 'hono'
import { sentry } from '@hono/sentry'

const app = new Hono<{ Bindings: Bindings }>({ strict: false })

app.use('*', sentry({ debug: true }))
Was this page helpful?