Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
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