Skip to content

Commit b2ef3d9

Browse files
committed
remove debug: true
1 parent b416d5b commit b2ef3d9

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

packages/web/src/main.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ Sentry.init({
4545
: "https://bf47d2a69dccbb1f44173be530166765@o4508764596142080.ingest.us.sentry.io/4508764610494464",
4646
environment: sstStage,
4747
tunnel: client.sentry.tunnel.$url().toString(),
48+
debug: sstStage === "prod" ? false : true,
4849
integrations: [
4950
Sentry.tanstackRouterBrowserTracingIntegration(router),
5051
Sentry.replayIntegration({

packages/web/vite.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { TanStackRouterVite } from "@tanstack/router-plugin/vite";
55
import react from "@vitejs/plugin-react";
66
import { defineConfig } from "vite";
77

8-
// https://vitejs.dev/config/
98
export default defineConfig(() => {
109
return {
1110
plugins: [

packages/workers/src/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default Sentry.withSentry(
2121
? "https://8a5572abfbb6f99f6144edf73b98446f@o4508764596142080.ingest.us.sentry.io/4508770682273792"
2222
: "https://d415d30f99a3f43649f2289a054fe5b2@o4508764596142080.ingest.us.sentry.io/4508764598829056",
2323
tracesSampleRate: Resource.App.stage === "prod" ? 0.2 : 1.0,
24-
debug: true,
24+
debug: Resource.App.stage === "prod" ? false : true,
2525
environment: Resource.App.stage,
2626
}),
2727
handler,

0 commit comments

Comments
 (0)