Skip to content

Commit 7f20e30

Browse files
fix: restored vercel analytics and speed insights
1 parent 7b3a10c commit 7f20e30

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

apps/frontend/src/app/[locale]/layout.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import { Analytics } from '@vercel/analytics/next';
2+
import { SpeedInsights } from '@vercel/speed-insights/next';
13
import { SessionProvider } from 'next-auth/react';
24
import { NextIntlClientProvider } from 'next-intl';
35
import { getMessages, setRequestLocale } from 'next-intl/server';
@@ -54,6 +56,9 @@ export default async function RootLayout({ children, params }: Props) {
5456
<TooltipProvider>{children}</TooltipProvider>
5557
</NextIntlClientProvider>
5658
</SessionProvider>
59+
60+
<Analytics />
61+
<SpeedInsights />
5762
</body>
5863
</html>
5964
);

0 commit comments

Comments
 (0)