blob: 8bce8a6d49c9c240cb9423c824e219e377425d49 (
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>minimal</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>
|