From 60a907a32c8eda54bd1d3595303e54a44f283fb5 Mon Sep 17 00:00:00 2001 From: Crazypersonalph <93847055+Crazypersonalph@users.noreply.github.com> Date: Sun, 19 May 2024 22:50:00 +0800 Subject: [PATCH] remove sentry due to filled quote and not much use --- package.json | 3 --- vite.config.ts | 11 ----------- 2 files changed, 14 deletions(-) diff --git a/package.json b/package.json index 643939a5..bbe843a1 100644 --- a/package.json +++ b/package.json @@ -35,9 +35,6 @@ "@heroicons/react": "^2.1.3", "@million/lint": "latest", "@sentry/browser": "^7.100.1", - "@sentry/cli": "^2.28.6", - "@sentry/react": "^7.100.1", - "@sentry/vite-plugin": "^2.16.0", "@types/color": "^3.0.6", "@types/dompurify": "^3.0.5", "@types/lodash": "^4.17.0", diff --git a/vite.config.ts b/vite.config.ts index 42ffbdb0..666ae65a 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -3,7 +3,6 @@ import { crx } from '@crxjs/vite-plugin' import million from "million/compiler" import manifest from './manifest.json' import react from '@vitejs/plugin-react-swc' -import { sentryVitePlugin } from "@sentry/vite-plugin"; import { join } from 'path' export default defineConfig({ @@ -16,16 +15,6 @@ export default defineConfig({ } }), crx({ manifest }), - sentryVitePlugin({ - org: process.env.SENTRY_ORG, - project: 'betterseqtaplus-main', - authToken: process.env.SENTRY_AUTH_TOKEN, - }), - sentryVitePlugin({ - org: process.env.SENTRY_ORG, - project: 'betterseqtaplus-popup', - authToken: process.env.SENTRY_AUTH_TOKEN, - }), ], server: { port: 5173,