fix(sentry): upload source maps to php-laravel project
Frontend JS errors land in the php-laravel project (app.tsx initializes Sentry with SENTRY_LARAVEL_DSN), so source maps must be uploaded there, not to the frontend project, to symbolicate them.
This commit is contained in:
parent
45c66e4451
commit
2e4c37a734
|
|
@ -38,7 +38,10 @@ export default defineConfig({
|
|||
url: 'https://de.sentry.io/',
|
||||
authToken: sentryAuthToken,
|
||||
org: 'whisper-money',
|
||||
project: 'frontend',
|
||||
// Frontend JS errors are captured into the php-laravel
|
||||
// project (see app.tsx Sentry.init using SENTRY_LARAVEL_DSN),
|
||||
// so maps must be uploaded there to symbolicate them.
|
||||
project: 'php-laravel',
|
||||
release: {
|
||||
create: false,
|
||||
finalize: false,
|
||||
|
|
|
|||
Loading…
Reference in New Issue