Too bad, I hope workers and functions get unified. I guess I’ll need to set up Lerna or Turborepo fo
Too bad, I hope workers and functions get unified. I guess I’ll need to set up Lerna or Turborepo for now.

"node_compat" within the wrangler.toml?node_compat (which is done with standard polyfills that increase the size of your Worker) is slowly being fazed out in favor of nodejs_compat (which is built into the runtime)KnexonError() handler.If you're running your application on Cloudflare Workers, set a binding value named SENTRY_DSN, which will be used as the DSN.
wrangler.toml file?wrangler.toml file or .dev.vars filec.get('sentry') -- that returns emptyimport { Hono } from 'hono'
import { sentry } from '@hono/sentry'
const app = new Hono<{ Bindings: Bindings }>({ strict: false })
app.use('*', sentry({ debug: true }))app.get('/call-sentry', async(c) => {
c.get('sentry').captureException('Something happened, tell Sentry!')
})