Hi all, I'm running the tailwind-css-starterblog and am not able to implement the web analytics. I added the "yarn add /analytics" ; it is in my package.json. I imported "import { Analytics } from '/analytics/react'" in my layout.tsx adjusted the body to
<body className="bg-white pl-[calc(100vw-100%)] text-black antialiased dark:bg-gray-950 dark:text-white"> <ThemeProviders> <Analytics /> <SectionContainer> <SearchProvider searchConfig={siteMetadata.search as SearchConfig}> <Header /> <main className="mb-auto">{children}</main> </SearchProvider> <Footer /> </SectionContainer> </ThemeProviders> </body> </html>"I was able to deploy and build the website without errors, but the analytics won't work
What am I missing?
Any help is highly appreciated!