feat: Add Sentry (#55)

* add basic sentry integration

* add FE sourcemaps to Sentry

* add sentry release step to pre-release workflow

* add test exceptions

* update pnpm lock file

* workflow fixes

* upload rust debug files to sentry in CI

* fix action name

* fix sentry upload action args

* fix env name to match CI

* fix sentry-cli on windows

* remove test errors, format FE files

* cargo fmt

* mcp bin async fix

* update Sentry DSN to new project

* update Sentry DSN to new project
This commit is contained in:
Anastasiia Solop
2025-07-04 11:11:45 +02:00
committed by GitHub
parent ddf61a5fb1
commit 597cefbf97
15 changed files with 1101 additions and 159 deletions

View File

@@ -1,15 +1,21 @@
import { sentryVitePlugin } from "@sentry/vite-plugin";
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'
export default defineConfig({
plugins: [react()],
plugins: [react(), sentryVitePlugin({
org: "bloop-ai",
project: "vibe-kanban"
})],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
"shared": path.resolve(__dirname, "../shared"),
},
},
server: {
port: parseInt(process.env.FRONTEND_PORT || '3000'),
proxy: {
@@ -19,4 +25,8 @@ export default defineConfig({
},
},
},
build: {
sourcemap: true
}
})