11 lines
330 B
Plaintext
11 lines
330 B
Plaintext
---
|
|
import { GoogleAnalytics } from '@astrolib/analytics';
|
|
import { ANALYTICS_CONFIG } from '~/utils/config';
|
|
---
|
|
|
|
{
|
|
ANALYTICS_CONFIG?.vendors?.googleAnalytics?.id ? (
|
|
<GoogleAnalytics id={String(ANALYTICS_CONFIG.vendors.googleAnalytics.id)} partytown={ANALYTICS_CONFIG?.vendors?.googleAnalytics?.partytown} />
|
|
) : null
|
|
}
|