this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

rm vercel analytics

+6 -28
-1
package.json
··· 13 13 "dependencies": { 14 14 "@atcute/client": "^2.0.3", 15 15 "@atcute/whitewind": "^1.0.2", 16 - "@vercel/analytics": "^1.3.1", 17 16 "bright": "^0.8.5", 18 17 "lucide-react": "^0.453.0", 19 18 "next": "15.0.1",
-21
pnpm-lock.yaml
··· 14 14 '@atcute/whitewind': 15 15 specifier: ^1.0.2 16 16 version: 1.0.2(@atcute/client@2.0.3) 17 - '@vercel/analytics': 18 - specifier: ^1.3.1 19 - version: 1.3.1(next@15.0.1(@babel/core@7.25.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) 20 17 bright: 21 18 specifier: ^0.8.5 22 19 version: 0.8.5(react@18.3.1) ··· 577 574 578 575 '@ungap/structured-clone@1.2.0': 579 576 resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 580 - 581 - '@vercel/analytics@1.3.1': 582 - resolution: {integrity: sha512-xhSlYgAuJ6Q4WQGkzYTLmXwhYl39sWjoMA3nHxfkvG+WdBT25c563a7QhwwKivEOZtPJXifYHR1m2ihoisbWyA==} 583 - peerDependencies: 584 - next: '>= 13' 585 - react: ^18 || ^19 586 - peerDependenciesMeta: 587 - next: 588 - optional: true 589 - react: 590 - optional: true 591 577 592 578 acorn-jsx@5.3.2: 593 579 resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} ··· 2737 2723 eslint-visitor-keys: 3.4.3 2738 2724 2739 2725 '@ungap/structured-clone@1.2.0': {} 2740 - 2741 - '@vercel/analytics@1.3.1(next@15.0.1(@babel/core@7.25.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': 2742 - dependencies: 2743 - server-only: 0.0.1 2744 - optionalDependencies: 2745 - next: 15.0.1(@babel/core@7.25.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2746 - react: 18.3.1 2747 2726 2748 2727 acorn-jsx@5.3.2(acorn@8.13.0): 2749 2728 dependencies:
+6 -6
src/app/layout.tsx
··· 1 - import { Analytics } from "@vercel/analytics/react"; 2 1 import type { Metadata } from "next"; 3 2 import NextPlausible from "next-plausible"; 4 3 import { Inter, Libre_Baskerville } from "next/font/google"; ··· 46 45 return ( 47 46 <html lang="en"> 48 47 <head> 49 - <NextPlausible domain="mozzius.dev" 50 - customDomain="https://plausible.mozzius.dev" 51 - trackOutboundLinks 52 - selfHosted /> 48 + <NextPlausible 49 + domain="mozzius.dev" 50 + customDomain="https://plausible.mozzius.dev" 51 + trackOutboundLinks 52 + selfHosted 53 + /> 53 54 </head> 54 55 <body 55 56 className={cx( ··· 60 61 )} 61 62 > 62 63 {children} 63 - <Analytics /> 64 64 </body> 65 65 </html> 66 66 );