From ed9b443bf621f747fb7e7d6402b29f4b09016ab6 Mon Sep 17 00:00:00 2001 From: Tanuj Mittal Date: Thu, 10 Sep 2020 12:15:24 -0700 Subject: [PATCH] Disable fetch tracking in appInsights (#187) --- src/Shared/appInsights.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Shared/appInsights.ts b/src/Shared/appInsights.ts index 3ac5fddc9..5eaa92ab9 100644 --- a/src/Shared/appInsights.ts +++ b/src/Shared/appInsights.ts @@ -2,8 +2,7 @@ import { ApplicationInsights } from "@microsoft/applicationinsights-web"; const appInsights = new ApplicationInsights({ config: { - instrumentationKey: "fa645d97-6237-4656-9559-0ee0cb55ee49", - disableFetchTracking: false + instrumentationKey: "fa645d97-6237-4656-9559-0ee0cb55ee49" } }); appInsights.loadAppInsights();