build: remove @vercel/analytics

This commit is contained in:
Anthony 2024-01-26 12:13:00 +01:00
parent 0b59a92f6f
commit ab45f1f614

View File

@ -2,7 +2,6 @@ import 'nextra-theme-blog/style.css'
import type { AppProps } from 'next/app' import type { AppProps } from 'next/app'
import Head from 'next/head' import Head from 'next/head'
import '../styles/main.css' import '../styles/main.css'
import { Analytics } from '@vercel/analytics/react';
export default function App({ Component, pageProps }: AppProps) { export default function App({ Component, pageProps }: AppProps) {
return ( return (
@ -17,7 +16,6 @@ export default function App({ Component, pageProps }: AppProps) {
/> />
</Head> </Head>
<Component {...pageProps} /> <Component {...pageProps} />
<Analytics />
</> </>
) )
} }