Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
docs(hono): Document usage without "*"
  • Loading branch information
s1gr1d committed Mar 11, 2026
commit a786b80c49b547d7a82423727603d51c67822f3b
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ interface Env {
const app = new Hono<{ Bindings: Env }>();

app.use(
'*',
sentry(app, {
dsn: process.env.SENTRY_DSN,
tracesSampleRate: 1.0,
Expand Down
1 change: 0 additions & 1 deletion packages/hono/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ const app = new Hono();

// Initialize Sentry middleware right after creating the app
app.use(
'*',
sentry(app, {
dsn: 'your-sentry-dsn',
// ...other Sentry options
Expand Down
Loading