-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
This card is to implement the inline JS with SSR that was part of #11 but not implemented within that card.
{
// <script type="text/javascript">
// // This is not implemented as part of this issue, but put as a reminder of this need.
// window.dataLayer = window.dataLayer || [];
// function gtag() { dataLayer.push(arguments); }
// gtag('js', new Date());
// gtag('config', 'ABC');
// </script>
type: "script",
inline: true,
content: `
// This is not implemented as part of this issue, but put as a reminder of this need.
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', '${myGTagID}');
`
}
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request