From 614e29544be5891e98882e3930ad5e19139dc21a Mon Sep 17 00:00:00 2001 From: Lars Hampe Date: Tue, 22 Oct 2024 22:29:28 +0200 Subject: [PATCH] feat(app): remove vite sentry sourcemap upload --- apps/app/vite.config.ts | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/apps/app/vite.config.ts b/apps/app/vite.config.ts index cd4c948..ba18c28 100644 --- a/apps/app/vite.config.ts +++ b/apps/app/vite.config.ts @@ -1,4 +1,3 @@ -import { sentryVitePlugin } from '@sentry/vite-plugin' import { TanStackRouterVite } from '@tanstack/router-plugin/vite' import react from '@vitejs/plugin-react' import { defineConfig } from 'vite' @@ -10,12 +9,5 @@ export default defineConfig({ emptyOutDir: true, sourcemap: true, }, - plugins: [ - TanStackRouterVite(), - react(), - sentryVitePlugin({ - org: 'boringtools', - project: 'app', - }), - ], + plugins: [TanStackRouterVite(), react()], })