mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 02:50: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
|
"TEST": true
|
||||||
},
|
},
|
||||||
"testRegex": "/test/.*\\.test\\.ts$",
|
"testRegex": "/test/.*\\.test\\.ts$",
|
||||||
"collectCoverageFrom": ["src/**/*.{ts,js}"],
|
"collectCoverageFrom": ["src/**/*.{ts,js}"]
|
||||||
"useESM": true
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 */
|
||||||
|
|
Loading…
Add table
Reference in a new issue