Skip to content

Instantly share code, notes, and snippets.

@DopamineDriven
Created June 7, 2021 08:49
Show Gist options
  • Save DopamineDriven/ac67525af824ecf8f57db483ad496088 to your computer and use it in GitHub Desktop.
Save DopamineDriven/ac67525af824ecf8f57db483ad496088 to your computer and use it in GitHub Desktop.
Document Script Tags
<Head>
<meta charSet='utf-8' />
<script
async
src={`https://www.googletagmanager.com/gtag/js?id=${GA_TRACKING_ID}`}
/>
<script
dangerouslySetInnerHTML={{
__html: `window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', '${GA_TRACKING_ID}', {
page: window.location.pathname
});`
}}
/>
</Head>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment