mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 02:20:54 +01:00
Make this workaround less terrible
This commit is contained in:
parent
ed1005482a
commit
851ad70ee2
1 changed files with 6 additions and 3 deletions
|
@ -662,9 +662,12 @@ const sentryWrapper = async (event: FetchEvent, test = false): Promise<void> =>
|
|||
allowedHeaders: /(.*)/,
|
||||
allowedSearchParams: /(.*)/,
|
||||
},
|
||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
||||
// @ts-ignore TODO: Figure out why this throws type errors after @sentry/integrations update
|
||||
integrations: [new RewriteFrames({ root: '/' })],
|
||||
|
||||
/* TODO: Figure out what changed between @sentry/integration 7.65.0 and 7.66.0
|
||||
https://github.com/getsentry/sentry-javascript/compare/7.65.0...7.66.0
|
||||
which caused types to go apeshit */
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
integrations: [new RewriteFrames({ root: '/' }) as any],
|
||||
/* event includes 'waitUntil', which is essential for Sentry logs to be delivered.
|
||||
Also includes 'request' -- no need to set it separately. */
|
||||
release: RELEASE_NAME
|
||||
|
|
Loading…
Add table
Reference in a new issue