From e2c15f59313f78496df3575510b5b89a1bd6851f Mon Sep 17 00:00:00 2001 From: Admin Date: Wed, 25 Mar 2026 20:39:26 +0500 Subject: [PATCH] fix(observability): correct sentryVitePlugin sourcemaps option key --- ui/vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/vite.config.ts b/ui/vite.config.ts index 1ade991..bf75a1d 100644 --- a/ui/vite.config.ts +++ b/ui/vite.config.ts @@ -26,7 +26,7 @@ export default defineConfig({ disable: !process.env.SENTRY_AUTH_TOKEN, // Source maps are uploaded to GlitchTip; do not ship them in the // production bundle served to browsers. - sourceMapsUploadOptions: { + sourcemaps: { filesToDeleteAfterUpload: ['./build/**/*.map'] } })