添加@vercel/analytics依赖并在应用程序组件中集成分析功能,优化依赖管理

This commit is contained in:
zihanjian
2025-06-09 00:36:08 +08:00
parent 53780cc6cb
commit 0edac37a92
3 changed files with 50 additions and 8 deletions

39
package-lock.json generated
View File

@@ -8,6 +8,7 @@
"name": "purchase-decision-calculator",
"version": "1.0.0",
"dependencies": {
"@vercel/analytics": "^1.5.0",
"lucide-react": "^0.294.0",
"next": "^14.0.0",
"react": "^18.2.0",
@@ -1109,6 +1110,44 @@
"win32"
]
},
"node_modules/@vercel/analytics": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@vercel/analytics/-/analytics-1.5.0.tgz",
"integrity": "sha512-MYsBzfPki4gthY5HnYN7jgInhAZ7Ac1cYDoRWFomwGHWEX7odTEzbtg9kf/QSo7XEsEAqlQugA6gJ2WS2DEa3g==",
"license": "MPL-2.0",
"peerDependencies": {
"@remix-run/react": "^2",
"@sveltejs/kit": "^1 || ^2",
"next": ">= 13",
"react": "^18 || ^19 || ^19.0.0-rc",
"svelte": ">= 4",
"vue": "^3",
"vue-router": "^4"
},
"peerDependenciesMeta": {
"@remix-run/react": {
"optional": true
},
"@sveltejs/kit": {
"optional": true
},
"next": {
"optional": true
},
"react": {
"optional": true
},
"svelte": {
"optional": true
},
"vue": {
"optional": true
},
"vue-router": {
"optional": true
}
}
},
"node_modules/acorn": {
"version": "8.14.1",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz",

View File

@@ -10,20 +10,21 @@
"lint": "next lint"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@vercel/analytics": "^1.5.0",
"lucide-react": "^0.294.0",
"next": "^14.0.0",
"lucide-react": "^0.294.0"
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"typescript": "^5.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"tailwindcss": "^3.3.0",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.31",
"eslint": "^8.0.0",
"eslint-config-next": "^14.0.0"
"eslint-config-next": "^14.0.0",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.0",
"typescript": "^5.0.0"
}
}
}

View File

@@ -1,6 +1,7 @@
import '../styles/globals.css'
import type { AppProps } from 'next/app'
import Head from 'next/head'
import { Analytics } from "@vercel/analytics/next"
export default function App({ Component, pageProps }: AppProps) {
return (
@@ -13,6 +14,7 @@ export default function App({ Component, pageProps }: AppProps) {
/>
</Head>
<Component {...pageProps} />
<Analytics />
</>
)
}