Sfoglia il codice sorgente

disable sentry for development

AykutSarac 2 anni fa
parent
commit
eac23526ca
1 ha cambiato i file con 6 aggiunte e 4 eliminazioni
  1. 6 4
      src/pages/_app.tsx

+ 6 - 4
src/pages/_app.tsx

@@ -9,10 +9,12 @@ import { darkTheme, lightTheme } from "src/constants/theme";
 import { useConfig, withConfig } from "src/hocs/config";
 import { useConfig, withConfig } from "src/hocs/config";
 import { GoogleAnalytics } from "src/components/GoogleAnalytics";
 import { GoogleAnalytics } from "src/components/GoogleAnalytics";
 
 
-Sentry.init({
-  dsn: "https://[email protected]/6495191",
-  tracesSampleRate: 0.5,
-});
+if (process.env.NODE_ENV !== "development") {
+  Sentry.init({
+    dsn: "https://[email protected]/6495191",
+    tracesSampleRate: 0.5,
+  });
+}
 
 
 function JsonVisio({ Component, pageProps }: AppProps) {
 function JsonVisio({ Component, pageProps }: AppProps) {
   const { settings } = useConfig();
   const { settings } = useConfig();