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:
Víctor Falcón 2026-07-03 15:30:27 +02:00
parent 45c66e4451
commit 2e4c37a734
1 changed files with 4 additions and 1 deletions

View File

@ -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,