Skip to content

Commit d89ee18

Browse files
s1gr1dcleptric
andauthored
docs(hono): Document usage without "*" (#19756)
Sentry will most likely be used on all pages, so it's not necessary to to add the boilerplate parameter for `"*"`. Closes #19757 (added automatically) Co-authored-by: Michi Hoffmann <cleptric@users.noreply.github.com>
1 parent 788196f commit d89ee18

File tree

2 files changed

+0
-2
lines changed
  • dev-packages/cloudflare-integration-tests/suites/hono-sdk
  • packages/hono

2 files changed

+0
-2
lines changed

dev-packages/cloudflare-integration-tests/suites/hono-sdk/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ interface Env {
88
const app = new Hono<{ Bindings: Env }>();
99

1010
app.use(
11-
'*',
1211
sentry(app, {
1312
dsn: process.env.SENTRY_DSN,
1413
tracesSampleRate: 1.0,

packages/hono/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ const app = new Hono();
5454

5555
// Initialize Sentry middleware right after creating the app
5656
app.use(
57-
'*',
5857
sentry(app, {
5958
dsn: 'your-sentry-dsn',
6059
// ...other Sentry options

0 commit comments

Comments
 (0)