index.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="theme-color" content="#000000">
  6. <link rel="manifest" href="manifest.json">
  7. <link rel="shortcut icon" href="favicon.ico">
  8. <title><%= htmlWebpackPlugin.options.PAGE_TITLE %></title>
  9. <% if (htmlWebpackPlugin.options.IS_PROD) { %>
  10. <!-- Global site tag (gtag.js) - Google Analytics -->
  11. <script async src="https://www.googletagmanager.com/gtag/js?id=UA-133429788-6"></script>
  12. <script>
  13. window.dataLayer = window.dataLayer || [];
  14. function gtag(){dataLayer.push(arguments);}
  15. gtag('js', new Date());
  16. gtag('config', 'UA-133429788-6', { 'anonymize_ip': true });
  17. </script>
  18. <% } %>
  19. <script type="text/javascript" src="/env-config.js"></script>
  20. </head>
  21. <body>
  22. <noscript>
  23. You need to enable JavaScript to run this app.
  24. </noscript>
  25. <div id="root"></div>
  26. <div id="tooltips"></div>
  27. <script>
  28. if (window.self !== window.top) {
  29. window.top.location.href = window.location.href;
  30. }
  31. </script>
  32. </body>
  33. </html>