index.html 679 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" type="image/svg+xml" href="/vite.svg" />
  6. <link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL@20..48,300,0..1"
  7. rel="stylesheet" />
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  9. <title>Vite + React + TS</title>
  10. <style>
  11. @font-face {
  12. font-family: 'growi-custom-icons';
  13. src: url('../custom-icons/dist/growi-custom-icons.woff2') format('woff2');
  14. font-display: block;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <div id="root"></div>
  20. <script type="module" src="/src/main.tsx"></script>
  21. </body>
  22. </html>