I have setup Vercel Analytics but I’m getting no data, there was one time that it shown it but after page refresh in dashboard it stoped working, it does show how many users are connected but thats it
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import { Analytics } from '@vercel/analytics/next'
import './globals.css'
const inter = Inter({ subsets: ['latin'] })
export const metadata: Metadata = {
title: 'Marius.dev',
description: 'Marius.dev',
}
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body className={inter.className}>
{children}
<Analytics />
</body>
</html>
)
}