index.html 573 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" type="image/svg+xml" href="/vite.svg" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>AIORZ WebAR</title>
  8. <!-- 预连接到 CDN,提前建立连接以加速资源加载 -->
  9. <link rel="preconnect" href="https://cdn.jsdelivr.net" crossorigin />
  10. <link rel="dns-prefetch" href="https://cdn.jsdelivr.net" />
  11. </head>
  12. <body>
  13. <div id="root"></div>
  14. <script type="module" src="/src/main.tsx"></script>
  15. </body>
  16. </html>