Skip to content

Commit ba4f76d

Browse files
committed
fix(deployment): disable Vercel speed insights
1 parent 813a129 commit ba4f76d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
22

33
import { AppModule } from './app/app.module';
44
import { inject } from '@vercel/analytics';
5-
import { injectSpeedInsights } from '@vercel/speed-insights';
5+
// import { injectSpeedInsights } from '@vercel/speed-insights';
66

77
platformBrowserDynamic()
88
.bootstrapModule(AppModule)
99
.catch((err) => console.error(err));
1010

1111
inject();
12-
injectSpeedInsights();
12+
// Speed Insights are currently disabled as they triggered quota limits pausing the deployment.
13+
// injectSpeedInsights();

0 commit comments

Comments
 (0)