open-design/apps/landing-page/app/_components/google-analytics.astro
ashleyashli 558fedd207
fix(landing): wire GA4 rollout config (#2615)
Co-authored-by: ashley li <ashleyli@ashleydeMacBook-Air-2.local>
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-22 14:56:58 +08:00

8 lines
232 B
Text

---
import { googleAnalyticsHeadHtml } from '../_lib/google-analytics';
const measurementId = import.meta.env.PUBLIC_GA_MEASUREMENT_ID;
const headHtml = googleAnalyticsHeadHtml(measurementId);
---
<Fragment set:html={headHtml} />