Skip to content

Commit 7bb39a4

Browse files
chore: added missing gtag script (#176)
1 parent ef74642 commit 7bb39a4

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

app.html

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
<!DOCTYPE html>
22
<html lang="en" {{ HTML_ATTRS }} class="hidden">
33
<head {{ HEAD_ATTRS }}>
4+
<script
5+
async
6+
src="https://www.googletagmanager.com/gtag/js?id=G-HBV7K2PRX6"
7+
></script>
48
<script>
5-
window.dataLayer = window.dataLayer || []
9+
window.dataLayer = window.dataLayer || [];
610
function gtag() {
7-
dataLayer.push(arguments)
11+
dataLayer.push(arguments);
812
}
9-
gtag('js', new Date())
10-
gtag('config', 'G-HBV7K2PRX6')
13+
gtag("js", new Date());
14+
gtag("config", "G-HBV7K2PRX6");
1115
</script>
1216
{{ HEAD }}
1317
</head>

0 commit comments

Comments
 (0)