From 2ccd39da42b89601b84e9e03d9ccd220bec2c7a3 Mon Sep 17 00:00:00 2001 From: heeyongKim <166043860+heeeeyong@users.noreply.github.com> Date: Fri, 12 Sep 2025 16:32:04 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EA=B5=AC=EA=B8=80=20=EC=95=A0=EB=84=90?= =?UTF-8?q?=EB=A6=AC=ED=8B=B1=EC=8A=A4=20=ED=98=B8=EC=B6=9C=20=ED=95=A8?= =?UTF-8?q?=EC=88=98=20main.tsx=EC=97=90=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.tsx b/src/main.tsx index 967f983d..0ce356e5 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -1,8 +1,9 @@ import { createRoot } from 'react-dom/client'; import './main.css'; import App from './App.tsx'; -import { initGA } from './lib/ga.ts'; +import { initGA, sendPageView } from './lib/ga.ts'; initGA(); +sendPageView(window.location.pathname); createRoot(document.getElementById('root')!).render();