We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d50563b commit c194636Copy full SHA for c194636
angular/src/index.html
@@ -1,13 +1,27 @@
1
<!doctype html>
2
<html lang="en">
3
+
4
<head>
5
<meta charset="utf-8">
6
<title>AngularStarter</title>
7
<base href="/">
8
<meta name="viewport" content="width=device-width, initial-scale=1">
9
<link rel="icon" type="image/x-icon" href="favicon.ico">
10
11
+ <!-- Google tag (gtag.js) -->
12
+ <script async src="https://www.googletagmanager.com/gtag/js?id=YOUR-ID"></script>
13
+ <script>
14
+ window.dataLayer = window.dataLayer || [];
15
+ function gtag() { dataLayer.push(arguments); }
16
+ gtag('js', new Date());
17
18
+ gtag('config', 'YOUR-ID');
19
+ </script>
20
21
</head>
22
23
<body>
24
<app-root></app-root>
25
</body>
-</html>
26
27
+</html>
0 commit comments