Skip to content

Commit

Permalink
layout.tsx에 <SpeedInsights /> 노드 추가(Vercel 퍼포먼스 모니터링 셋업하기)
Browse files Browse the repository at this point in the history
  • Loading branch information
joonhok-fittube committed Jun 2, 2024
1 parent f1db9f6 commit 59fd6c5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type { Metadata } from "next";
import { SpeedInsights } from "@vercel/speed-insights/next";
import { Inter } from "next/font/google";
import "./globals.css";

Expand All @@ -16,7 +17,10 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
<body className={inter.className}>
{children}
<SpeedInsights />
</body>
</html>
);
}

0 comments on commit 59fd6c5

Please sign in to comment.