mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 04:45:22 -04:00
remove vercel speed insights
This commit is contained in:
parent
f886a7cd0b
commit
4b719f8740
@ -1 +1 @@
|
||||
20.18.0
|
||||
20.18.1
|
||||
|
37
package.json
37
package.json
@ -25,12 +25,11 @@
|
||||
"@novnc/novnc": "1.4.0",
|
||||
"@octokit/graphql": "^8.1.1",
|
||||
"@octokit/graphql-schema": "^15.25.0",
|
||||
"@prisma/adapter-libsql": "^5.20.0",
|
||||
"@prisma/client": "^5.20.0",
|
||||
"@prisma/adapter-libsql": "^5.22.0",
|
||||
"@prisma/client": "^5.22.0",
|
||||
"@react-spring/web": "^9.7.5",
|
||||
"@stitches/react": "1.3.1-1",
|
||||
"@vercel/analytics": "^1.3.1",
|
||||
"@vercel/speed-insights": "^1.0.12",
|
||||
"@vercel/analytics": "^1.4.1",
|
||||
"comma-number": "^2.1.0",
|
||||
"copy-to-clipboard": "^3.3.3",
|
||||
"dayjs": "^1.11.13",
|
||||
@ -39,10 +38,10 @@
|
||||
"formik": "^2.4.6",
|
||||
"geist": "^1.3.1",
|
||||
"gray-matter": "^4.0.3",
|
||||
"next": "14.2.15",
|
||||
"next": "14.2.18",
|
||||
"next-mdx-remote": "^5.0.0",
|
||||
"next-seo": "^6.6.0",
|
||||
"nodemailer": "^6.9.15",
|
||||
"nodemailer": "^6.9.16",
|
||||
"obj-str": "^1.1.0",
|
||||
"p-map": "^7.0.2",
|
||||
"p-memoize": "^7.1.1",
|
||||
@ -51,14 +50,14 @@
|
||||
"query-string": "^9.1.1",
|
||||
"react": "18.3.1",
|
||||
"react-dom": "18.3.1",
|
||||
"react-error-boundary": "^4.0.13",
|
||||
"react-error-boundary": "^4.1.2",
|
||||
"react-frame-component": "^5.2.7",
|
||||
"react-icons": "^5.3.0",
|
||||
"react-innertext": "^1.1.5",
|
||||
"react-intersection-observer": "^9.13.1",
|
||||
"react-is": "18.3.1",
|
||||
"react-player": "^2.16.0",
|
||||
"react-textarea-autosize": "^8.5.4",
|
||||
"react-textarea-autosize": "^8.5.5",
|
||||
"react-turnstile": "^1.1.4",
|
||||
"react-tweet": "^3.2.1",
|
||||
"rehype-prism-plus": "^2.0.0",
|
||||
@ -80,25 +79,25 @@
|
||||
"devDependencies": {
|
||||
"@jakejarvis/eslint-config": "^3.1.0",
|
||||
"@types/comma-number": "^2.1.2",
|
||||
"@types/node": "^22.7.5",
|
||||
"@types/nodemailer": "^6.4.16",
|
||||
"@types/node": "^22.9.1",
|
||||
"@types/nodemailer": "^6.4.17",
|
||||
"@types/novnc__novnc": "1.3.4",
|
||||
"@types/prop-types": "^15.7.13",
|
||||
"@types/react": "^18.3.11",
|
||||
"@types/react-dom": "^18.3.0",
|
||||
"@types/react": "^18.3.12",
|
||||
"@types/react-dom": "^18.3.1",
|
||||
"@types/react-is": "^18.3.0",
|
||||
"@types/strip-comments": "^2.0.4",
|
||||
"@typescript-eslint/eslint-plugin": "^8.8.1",
|
||||
"@typescript-eslint/parser": "^8.8.1",
|
||||
"@typescript-eslint/eslint-plugin": "^8.15.0",
|
||||
"@typescript-eslint/parser": "^8.15.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"eslint": "~8.57.1",
|
||||
"eslint-config-next": "14.2.15",
|
||||
"eslint-config-next": "14.2.18",
|
||||
"eslint-config-prettier": "~9.1.0",
|
||||
"eslint-plugin-mdx": "~3.1.5",
|
||||
"eslint-plugin-prettier": "~5.2.1",
|
||||
"lint-staged": "^15.2.10",
|
||||
"prettier": "^3.3.3",
|
||||
"prisma": "^5.20.0",
|
||||
"prisma": "^5.22.0",
|
||||
"simple-git-hooks": "^2.11.1",
|
||||
"typescript": "^5.6.3"
|
||||
},
|
||||
@ -120,9 +119,9 @@
|
||||
"eslint"
|
||||
]
|
||||
},
|
||||
"packageManager": "pnpm@9.12.1",
|
||||
"packageManager": "pnpm@9.14.2",
|
||||
"volta": {
|
||||
"node": "20.18.0",
|
||||
"pnpm": "9.12.1"
|
||||
"node": "20.18.1",
|
||||
"pnpm": "9.14.2"
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,6 @@
|
||||
import { useRouter } from "next/router";
|
||||
import { DefaultSeo, SocialProfileJsonLd } from "next-seo";
|
||||
import { Analytics } from "@vercel/analytics/react";
|
||||
import { SpeedInsights } from "@vercel/speed-insights/next";
|
||||
import { ThemeProvider } from "../contexts/ThemeContext";
|
||||
import Layout from "../components/Layout";
|
||||
import { defaultSeo, socialProfileJsonLd } from "../lib/config/seo";
|
||||
@ -49,7 +48,6 @@ const App = ({ Component, pageProps }: AppProps) => {
|
||||
<ThemeProvider classNames={classNames}>{getLayout(<Component {...pageProps} />)}</ThemeProvider>
|
||||
|
||||
<Analytics />
|
||||
<SpeedInsights />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
@ -70,15 +70,7 @@ const Privacy = () => {
|
||||
<Link href="https://vercel.com/docs/analytics/privacy-policy#data-point-information">
|
||||
without collecting anything identifiable
|
||||
</Link>{" "}
|
||||
about you. Likewise,{" "}
|
||||
<Link href="">
|
||||
<strong>Vercel Speed Insights</strong>
|
||||
</Link>{" "}
|
||||
is used to gather core web vitals{" "}
|
||||
<Link href="https://vercel.com/docs/speed-insights/privacy-policy#vercel-speed-insights-privacy-&-compliance">
|
||||
anonymously
|
||||
</Link>
|
||||
.
|
||||
about you.
|
||||
</p>
|
||||
|
||||
<H2 id="third-party">Third-Party Content</H2>
|
||||
|
538
pnpm-lock.yaml
generated
538
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user