Skip to content

Commit dcb545f

Browse files
vercel analytics
1 parent d0a03ae commit dcb545f

3 files changed

Lines changed: 40 additions & 0 deletions

File tree

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"@tanstack/react-query": "^5.101.0",
2424
"@upstash/ratelimit": "^2.0.8",
2525
"@upstash/redis": "^1.38.0",
26+
"@vercel/analytics": "^2.0.1",
2627
"botid": "^1.5.11",
2728
"drizzle-orm": "^0.45.2",
2829
"isbot": "^5.1.43",

pnpm-lock.yaml

Lines changed: 37 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/layout.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import type { Metadata } from "next";
22
import { Geist, Geist_Mono } from "next/font/google";
3+
import { Analytics } from "@vercel/analytics/next";
34
import "./globals.css";
45
import Providers from "@/components/Providers";
56

@@ -37,6 +38,7 @@ export default function RootLayout({
3738
>
3839
<body className="min-h-full flex flex-col">
3940
<Providers>{children}</Providers>
41+
<Analytics />
4042
</body>
4143
</html>
4244
);

0 commit comments

Comments
 (0)