Skip to content

Commit

Permalink
Merge pull request #13 from ethanniser/add-vercel-services
Browse files Browse the repository at this point in the history
add vercel services
  • Loading branch information
ethanniser authored Oct 20, 2024
2 parents e77cc8e + 7bb9548 commit a54ce8b
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@
"@types/bcryptjs": "^2.4.6",
"@upstash/ratelimit": "^2.0.3",
"@upstash/redis": "^1.34.3",
"@vercel/analytics": "^1.3.1",
"@vercel/blob": "^0.25.1",
"@vercel/functions": "^1.4.2",
"@vercel/postgres": "^0.10.0",
"@vercel/speed-insights": "^1.0.12",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
Expand Down
66 changes: 66 additions & 0 deletions 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 src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import { Suspense } from "react";
import { Cart } from "@/components/cart";
import { AuthServer } from "./auth.server";
import { Link } from "@/components/ui/link";
import { Analytics } from "@vercel/analytics/react";
import { SpeedInsights } from "@vercel/speed-insights/next";

const helvetica = localFont({
src: "./fonts/HelveticaNeueLTPro-Md.woff",
Expand Down Expand Up @@ -153,6 +155,8 @@ export default async function RootLayout({
</div>
</footer>
</body>
<Analytics />
<SpeedInsights />
</html>
);
}

0 comments on commit a54ce8b

Please sign in to comment.