From 59fd6c5510cd6bff1d5684ea9952b67a27939669 Mon Sep 17 00:00:00 2001 From: Joonho Kim Date: Sun, 2 Jun 2024 17:26:41 +0900 Subject: [PATCH] =?UTF-8?q?layout.tsx=EC=97=90=20=20?= =?UTF-8?q?=EB=85=B8=EB=93=9C=20=EC=B6=94=EA=B0=80(Vercel=20=ED=8D=BC?= =?UTF-8?q?=ED=8F=AC=EB=A8=BC=EC=8A=A4=20=EB=AA=A8=EB=8B=88=ED=84=B0?= =?UTF-8?q?=EB=A7=81=20=EC=85=8B=EC=97=85=ED=95=98=EA=B8=B0)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/layout.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/layout.tsx b/app/layout.tsx index 3314e47..c98d343 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -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"; @@ -16,7 +17,10 @@ export default function RootLayout({ }>) { return ( - {children} + + {children} + + ); }