mirror of
https://github.com/blueskychan-dev/blueskychan.dev.git
synced 2025-07-07 15:21:04 +00:00
Add vercel spyware
This commit is contained in:
parent
dd05af95ce
commit
7f9a58d44b
3 changed files with 11 additions and 1 deletions
|
@ -10,6 +10,8 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@phosphor-icons/react": "^2.0.15",
|
"@phosphor-icons/react": "^2.0.15",
|
||||||
|
"@vercel/analytics": "^1.5.0",
|
||||||
|
"@vercel/speed-insights": "^1.2.0",
|
||||||
"gray-matter": "^4.0.3",
|
"gray-matter": "^4.0.3",
|
||||||
"markdown-it": "^14.0.0",
|
"markdown-it": "^14.0.0",
|
||||||
"next": "^14.2.5",
|
"next": "^14.2.5",
|
||||||
|
|
BIN
public/setup/image.png
Normal file
BIN
public/setup/image.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 37 KiB |
|
@ -4,6 +4,8 @@ import "~/styles/globals.css"
|
||||||
import { useEffect } from "react"
|
import { useEffect } from "react"
|
||||||
import { useRouter } from "next/router"
|
import { useRouter } from "next/router"
|
||||||
import { Roboto, Mali } from "next/font/google"
|
import { Roboto, Mali } from "next/font/google"
|
||||||
|
import { Analytics } from '@vercel/analytics/next';
|
||||||
|
import { SpeedInsights } from '@vercel/speed-insights/next';
|
||||||
|
|
||||||
const roboto = Roboto({
|
const roboto = Roboto({
|
||||||
weight: "400",
|
weight: "400",
|
||||||
|
@ -27,7 +29,13 @@ function MyApp({ Component, pageProps }) {
|
||||||
}, [stright])
|
}, [stright])
|
||||||
|
|
||||||
|
|
||||||
return <Component {...pageProps} />
|
return (
|
||||||
|
<>
|
||||||
|
<Component {...pageProps} />
|
||||||
|
<Analytics />
|
||||||
|
<SpeedInsights />
|
||||||
|
</>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export default MyApp
|
export default MyApp
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue