diff --git a/web/package.json b/web/package.json index 8bd2eacab..ec5d1c71e 100644 --- a/web/package.json +++ b/web/package.json @@ -15,6 +15,7 @@ "@chakra-ui/react": "^2.5.1", "@emotion/react": "^11.10.6", "@emotion/styled": "^11.10.6", + "@vercel/analytics": "^1.0.2", "eslint": "8.36.0", "eslint-config-next": "13.2.4", "formik": "^2.2.9", @@ -46,6 +47,8 @@ "@types/node": "18.15.3", "@types/react": "18.0.28", "@types/react-dom": "18.0.11", + "eslint-import-resolver-typescript": "^3.6.0", + "eslint-plugin-import": "^2.28.1", "prettier": "^2.8.8", "typescript": "^4.8.4" } diff --git a/web/src/pages/_document.tsx b/web/src/pages/_document.tsx index 399c16968..167e6af5c 100644 --- a/web/src/pages/_document.tsx +++ b/web/src/pages/_document.tsx @@ -1,4 +1,5 @@ import { Html, Head, Main, NextScript } from "next/document"; +import { Analytics } from '@vercel/analytics/react'; export default function Document() { return ( @@ -18,6 +19,7 @@ export default function Document() {