index.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <!-- Google fonts -->
  7. <link rel="preconnect" href="https://fonts.googleapis.com" />
  8. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
  9. <link
  10. href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Roboto+Mono:wght@400;500&display=swap"
  11. rel="stylesheet"
  12. />
  13. <!-- Favicons -->
  14. <link rel="icon" href="<%= PUBLIC_PATH %>/favicon/favicon.ico" sizes="any" />
  15. <link rel="icon" href="<%= PUBLIC_PATH %>/favicon/icon.svg" type="image/svg+xml" />
  16. <link rel="apple-touch-icon" href="<%= PUBLIC_PATH %>/favicon/apple-touch-icon.png" />
  17. <link rel="manifest" href="<%= PUBLIC_PATH %>/manifest.json" />
  18. <title>UI for Apache Kafka</title>
  19. <script type="text/javascript">
  20. window.basePath = '<%= PUBLIC_PATH %>';
  21. window.__assetsPathBuilder = function (importer) {
  22. return window.basePath+ "/" + importer;
  23. };
  24. </script>
  25. </head>
  26. <body>
  27. <noscript>You need to enable JavaScript to run this app.</noscript>
  28. <div id="root"></div>
  29. <script type="module" src="/src/index.tsx"></script>
  30. </body>
  31. </html>