Skip to content

Commit

Permalink
chore(bridge-ui): Turn off Sentry (#14482)
Browse files Browse the repository at this point in the history
  • Loading branch information
jscriptcoder committed Aug 14, 2023
1 parent c47d5e1 commit 4c08b65
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/bridge-ui/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { sentryVitePlugin } from '@sentry/vite-plugin';
// import { sentryVitePlugin } from '@sentry/vite-plugin';
import { svelte } from '@sveltejs/vite-plugin-svelte';
import polyfillNode from 'rollup-plugin-polyfill-node';
import { defineConfig } from 'vite';
Expand All @@ -9,10 +9,10 @@ export default defineConfig({
plugins: [
svelte(),
polyfillNode(),
sentryVitePlugin({
org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT,
authToken: process.env.SENTRY_AUTH_TOKEN,
}),
// sentryVitePlugin({
// org: process.env.SENTRY_ORG,
// project: process.env.SENTRY_PROJECT,
// authToken: process.env.SENTRY_AUTH_TOKEN,
// }),
],
});

0 comments on commit 4c08b65

Please sign in to comment.