Only use sentry if SENTRY_DSN specified

This commit is contained in:
dangered wolf 2023-11-10 04:46:10 -05:00
parent 1b27ded260
commit b4b1a28bfc
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 15 additions and 14 deletions

View file

@ -20,6 +20,5 @@
"TEST": true "TEST": true
}, },
"testRegex": "/test/.*\\.test\\.ts$", "testRegex": "/test/.*\\.test\\.ts$",
"collectCoverageFrom": ["src/**/*.{ts,js}"], "collectCoverageFrom": ["src/**/*.{ts,js}"]
"useESM": true
} }

View file

@ -42,6 +42,7 @@ export const app = new Hono<{
} }
}); });
if (SENTRY_DSN) {
app.use( app.use(
'*', '*',
sentry({ sentry({
@ -55,6 +56,7 @@ app.use(
release: RELEASE_NAME release: RELEASE_NAME
}) })
); );
}
app.use('*', async (c, next) => { app.use('*', async (c, next) => {
/* Apply all headers from Constants.RESPONSE_HEADERS */ /* Apply all headers from Constants.RESPONSE_HEADERS */