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()], })