Skip to content

Commit

Permalink
docs: deps update
Browse files Browse the repository at this point in the history
  • Loading branch information
GZTimeWalker committed May 5, 2023
1 parent 634dd73 commit 07517cf
Show file tree
Hide file tree
Showing 3 changed files with 139 additions and 118 deletions.
10 changes: 5 additions & 5 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
},
"dependencies": {
"@vercel/analytics": "^1.0.0",
"next": "^13.3.0",
"next": "^13.3.1",
"next-themes": "^0.2.1",
"nextra": "^2.4.0",
"nextra-theme-docs": "^2.4.0",
"nextra": "^2.4.2",
"nextra-theme-docs": "^2.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/react": "^18.0.37",
"@types/node": "^18.16.1",
"@types/react": "^18.2.0",
"typescript": "^5.0.4"
}
}
11 changes: 9 additions & 2 deletions docs/pages/_app.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
import { Analytics } from "@vercel/analytics/react";

export default function App({ Component, pageProps }) {
return <Component {...pageProps} />
}
return (
<>
<Component {...pageProps} />
<Analytics />
</>
);
}
Loading

0 comments on commit 07517cf

Please sign in to comment.