aboutsummaryrefslogtreecommitdiffstats
path: root/renderer/index.html
blob: 027682cf5fab48f34fc693561bdbf35bfe45cea1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!doctype html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta
      http-equiv="Content-Security-Policy"
      content="default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self'; connect-src 'self' ws: http://localhost:5173"
    />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>Claude Flow</title>
  </head>
  <body>
    <div id="root"></div>
    <!-- Use a **relative** entry so it still works after base='./' rewrites -->
    <script type="module" src="src/main.tsx"></script>
  </body>
</html>