build: remove @vercel/analytics

This commit is contained in:
Anthony 2024-01-26 12:11:55 +01:00
parent f1862b7afb
commit 128dd2dc93

View File

@ -1,11 +1,9 @@
import type { AppProps } from 'next/app';
import { Analytics } from '@vercel/analytics/react';
function MyApp({ Component, pageProps }: AppProps) {
return (
<>
<Component {...pageProps} />
<Analytics />
</>
);
}