Skip to content

Commit

Permalink
[RELEASE] release 2.2.1 Web Analytics, Speed Insights 추가 (v2.2.1)
Browse files Browse the repository at this point in the history
v2.2.1 배포
더 나은 서비스를 제공하기 위한 사용자 행동 분석을 할 수 있도록, Web Analytics, Speed Insights 추가하였습니다. 

다음과 같은 정보를 확인할 수 있습니다. 
- [Web Analytics](#28 )
  - 사이트 방문자 수
  - 페이지 뷰
  - 사용자 통계
  - 사용자의 나라 통계
  - 사용하는 OS
  - 사용하는 브라우저

- [Speed Insights](#29 )
  - Real Experience Score
  - 나라별, Route/path별 성능 지표 확인
  • Loading branch information
geongyu09 authored May 17, 2024
2 parents 9c16b7e + ee5bdfb commit d935652
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 0 deletions.
2 changes: 2 additions & 0 deletions FE/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
"@tanstack/react-query-devtools": "^5.28.14",
"@types/qs": "^6.9.10",
"@types/react-syntax-highlighter": "^15.5.11",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"axios": "^1.6.2",
"classnames": "^2.3.2",
"jotai": "^2.6.0",
Expand Down
54 changes: 54 additions & 0 deletions FE/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions FE/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { Analytics } from "@vercel/analytics/react";
import { SpeedInsights } from "@vercel/speed-insights/next";
import type { Metadata } from "next";
import "./globals.css";
import { PropsWithChildren } from "react";
Expand All @@ -24,6 +26,8 @@ export default function RootLayout({ children }: PropsWithChildren) {
<html lang="ko">
<body className="flex flex-col items-center">
<Provider>{children}</Provider>
<Analytics />
<SpeedInsights />
</body>
</html>
);
Expand Down

0 comments on commit d935652

Please sign in to comment.