diff --git a/package.json b/package.json index 656a94576..93900c805 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,6 @@ "@iconify-json/logos": "^1.2.10", "@iconify/types": "^2.0.0", "@mdx-js/mdx": "^3.1.0", - "@next/third-parties": "^14.1.4", "@radix-ui/react-hover-card": "^1.1.5", "@radix-ui/react-select": "^2.0.0", "@radix-ui/react-slot": "^1.0.2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c13133f22..26f546597 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -35,9 +35,6 @@ importers: '@mdx-js/mdx': specifier: ^3.1.0 version: 3.1.1 - '@next/third-parties': - specifier: ^14.1.4 - version: 14.2.35(next@14.2.35(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) '@radix-ui/react-hover-card': specifier: ^1.1.5 version: 1.1.15(@types/react-dom@18.2.7)(@types/react@18.2.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -844,12 +841,6 @@ packages: cpu: [x64] os: [win32] - '@next/third-parties@14.2.35': - resolution: {integrity: sha512-dG1J+4uYungW1snGViN7tAVyfO0iz0zoB+sqsLMUo8kwR0NED2muLTMbOChmrliHhzOFj6ZpHfkvhy5NJjFvSQ==} - peerDependencies: - next: ^13.0.0 || ^14.0.0 - react: ^18.2.0 - '@nodelib/fs.scandir@2.1.5': resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -5022,9 +5013,6 @@ packages: thenify@3.3.1: resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} - third-party-capital@1.0.20: - resolution: {integrity: sha512-oB7yIimd8SuGptespDAZnNkzIz+NWaJCu2RMsbs4Wmp9zSDUM8Nhi3s2OOcqYuv3mN4hitXc8DVx+LyUmbUDiA==} - tiny-invariant@1.3.3: resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} @@ -6176,12 +6164,6 @@ snapshots: '@next/swc-win32-x64-msvc@14.2.33': optional: true - '@next/third-parties@14.2.35(next@14.2.35(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': - dependencies: - next: 14.2.35(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - third-party-capital: 1.0.20 - '@nodelib/fs.scandir@2.1.5': dependencies: '@nodelib/fs.stat': 2.0.5 @@ -11389,8 +11371,6 @@ snapshots: dependencies: any-promise: 1.3.0 - third-party-capital@1.0.20: {} - tiny-invariant@1.3.3: {} tinyexec@1.0.2: {} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0b45f028b..3408ec9c0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,7 +1,6 @@ import {Providers} from '@/app/providers'; import {Layout} from '@/components/Layout'; import {TECHNICAL_CHANGELOG_RSS_URL} from '@/data/constants'; -import {GoogleAnalytics} from '@next/third-parties/google'; import clsx from 'clsx'; import config from 'docs.config'; import {type Metadata} from 'next'; @@ -94,9 +93,7 @@ export default function RootLayout({children}: {children: React.ReactNode}) { {children} - - ); } diff --git a/src/app/page.tsx b/src/app/page.tsx index 51277d36a..5bc45cccb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,5 @@ import MdxComponents from '@/components/MdxComponents'; import {Prose} from '@/components/Prose'; -import {GoogleAnalytics} from '@next/third-parties/google'; import {allPosts} from 'contentlayer/generated'; import {getMDXComponent} from 'next-contentlayer/hooks'; import {notFound} from 'next/navigation'; @@ -32,7 +31,6 @@ const PostLayout = () => { - ); };