feat(app): remove vite sentry sourcemap upload
All checks were successful
Build and Push Docker Image / tests (push) Successful in 28s
Build and Push Docker Image / build (push) Successful in 1m54s

This commit is contained in:
Lars Hampe 2024-10-22 22:29:28 +02:00
parent 680d7cb408
commit 614e29544b

View File

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