mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 02:20:54 +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,19 +42,21 @@ export const app = new Hono<{
|
|||
}
|
||||
});
|
||||
|
||||
app.use(
|
||||
'*',
|
||||
sentry({
|
||||
dsn: SENTRY_DSN,
|
||||
requestDataOptions: {
|
||||
allowedHeaders: /(.*)/,
|
||||
allowedSearchParams: /(.*)/
|
||||
},
|
||||
if (SENTRY_DSN) {
|
||||
app.use(
|
||||
'*',
|
||||
sentry({
|
||||
dsn: SENTRY_DSN,
|
||||
requestDataOptions: {
|
||||
allowedHeaders: /(.*)/,
|
||||
allowedSearchParams: /(.*)/
|
||||
},
|
||||
|
||||
// integrations: [new RewriteFrames({ root: '/' }) as any],
|
||||
release: RELEASE_NAME
|
||||
})
|
||||
);
|
||||
// integrations: [new RewriteFrames({ root: '/' }) as any],
|
||||
release: RELEASE_NAME
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
app.use('*', async (c, next) => {
|
||||
/* Apply all headers from Constants.RESPONSE_HEADERS */
|
||||
|
|
Loading…
Add table
Reference in a new issue