Newer
Older
WebAppTemplate / flask-react-app / frontend / index.html
<!-- frontend/index.html
ViteがこのHTMLを起点にReactを起動する -->
<!doctype html>
<html lang="ja">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Flask + React + TS Starter</title>
  </head>
  <body>
    <div id="root"></div>
    <!-- TSXの起点 -->
    <script type="module" src="/src/main.tsx"></script>
  </body>
</html>