mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Only use sentry if SENTRY_DSN specified
This commit is contained in:
parent
1b27ded260
commit
b4b1a28bfc
2 changed files with 15 additions and 14 deletions
|
@ -20,6 +20,5 @@
|
|||
"TEST": true
|
||||
},
|
||||
"testRegex": "/test/.*\\.test\\.ts$",
|
||||
"collectCoverageFrom": ["src/**/*.{ts,js}"],
|
||||
"useESM": true
|
||||
"collectCoverageFrom": ["src/**/*.{ts,js}"]
|
||||
}
|
||||
|
|
|
@ -42,6 +42,7 @@ export const app = new Hono<{
|
|||
}
|
||||
});
|
||||
|
||||
if (SENTRY_DSN) {
|
||||
app.use(
|
||||
'*',
|
||||
sentry({
|
||||
|
@ -55,6 +56,7 @@ app.use(
|
|||
release: RELEASE_NAME
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
app.use('*', async (c, next) => {
|
||||
/* Apply all headers from Constants.RESPONSE_HEADERS */
|
||||
|
|
Loading…
Add table
Reference in a new issue