Skip to content

Commit

Permalink
chore: added missing gtag script
Browse files Browse the repository at this point in the history
  • Loading branch information
technikhil314 committed Aug 2, 2024
1 parent ef74642 commit dce30a4
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions app.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
<!DOCTYPE html>
<html lang="en" {{ HTML_ATTRS }} class="hidden">
<head {{ HEAD_ATTRS }}>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-HBV7K2PRX6"
></script>
<script>
window.dataLayer = window.dataLayer || []
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments)
dataLayer.push(arguments);
}
gtag('js', new Date())
gtag('config', 'G-HBV7K2PRX6')
gtag("js", new Date());
gtag("config", "G-HBV7K2PRX6");
</script>
{{ HEAD }}
</head>
Expand Down

0 comments on commit dce30a4

Please sign in to comment.