+vercel speed insights

This commit is contained in:
skidoodle 2023-12-31 16:46:20 +01:00
parent 24c2049edc
commit 2e4d490120
3 changed files with 11 additions and 0 deletions

View file

@ -1,4 +1,5 @@
import { Analytics } from '@vercel/analytics/react'
import { SpeedInsights } from '@vercel/speed-insights/next'
import { ThemeProvider } from 'next-themes'
import { Inter } from 'next/font/google'
import type { AppProps } from 'next/app'
@ -21,6 +22,7 @@ export default function App({ Component, pageProps }: AppProps) {
<Component {...pageProps} />
</ThemeProvider>
</main>
<SpeedInsights />
<Analytics />
</>
)