infra-cli
Version:
26 lines (23 loc) • 730 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta http-equiv="Content-Security-Policy" content="
default-src 'self' https://*;
connect-src 'self' https://* wss://* ws:;
font-src 'self' https://* blob: data:;
frame-src 'self' https://* blob: data:;
media-src 'self' https://* blob: data:;
img-src 'self' https://* blob: data:;
script-src 'self' 'unsafe-inline' 'unsafe-eval' https://*;
style-src 'self' 'unsafe-inline' https://* blob: data:;
"
/>
<title>{{ projectName }}</title>
</head>
<body>
<div id="root"></div>
</body>
</html>