feat: remove sentry

This commit is contained in:
Zamitto
2025-07-23 13:36:11 -03:00
parent 714b30d6da
commit 6dcc6bfe56
5 changed files with 8 additions and 449 deletions

View File

@@ -7,7 +7,6 @@ import {
} from "electron-vite";
import react from "@vitejs/plugin-react";
import svgr from "vite-plugin-svgr";
import { sentryVitePlugin } from "@sentry/vite-plugin";
export default defineConfig(({ mode }) => {
loadEnv(mode);
@@ -48,15 +47,7 @@ export default defineConfig(({ mode }) => {
"@shared": resolve("src/shared"),
},
},
plugins: [
svgr(),
react(),
sentryVitePlugin({
authToken: process.env.SENTRY_AUTH_TOKEN,
org: "hydra-launcher",
project: "hydra-renderer",
}),
],
plugins: [svgr(), react()],
},
};
});