index.html 738 B

12345678910111213141516171819202122
  1. <!doctype html>
  2. <html lang="ja">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" type="image/svg+xml" href="/vite.svg" />
  6. <link rel="preconnect" href="https://fonts.googleapis.com" />
  7. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
  8. <link
  9. href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;500;600;700&display=swap"
  10. rel="stylesheet"
  11. />
  12. <meta
  13. name="viewport"
  14. content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
  15. />
  16. <title>LINE Order App</title>
  17. </head>
  18. <body>
  19. <div id="app"></div>
  20. <script type="module" src="/src/main.ts"></script>
  21. </body>
  22. </html>