index.html 652 B

1234567891011121314151617181920212223
  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. <script type="text/javascript" src="/env-config.js"></script>
  10. </head>
  11. <body>
  12. <noscript>
  13. You need to enable JavaScript to run this app.
  14. </noscript>
  15. <div id="root"></div>
  16. <div id="tooltips"></div>
  17. <script>
  18. if (window.self !== window.top) {
  19. window.top.location.href = window.location.href;
  20. }
  21. </script>
  22. </body>
  23. </html>