This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
2022-07-19 18:07:59 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
2022-07-20 16:04:09 -04:00
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<!-- <meta http-equiv="Content-Security-Policy" content="script-src 'self' blob:"> -->
|
2022-07-29 00:01:01 -04:00
|
|
|
<meta http-equiv="Content-Security-Policy" content="
|
|
|
|
|
default-src 'self' data: https://ssl.gstatic.com https://fonts.gstatic.com;
|
|
|
|
|
style-src 'self' 'unsafe-inline' https://fonts.googleapis.com;
|
|
|
|
|
media-src *;
|
|
|
|
|
img-src 'self' data: content:;
|
|
|
|
|
connect-src *;">
|
2022-07-20 16:04:09 -04:00
|
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
|
|
|
|
<title>Vite App</title>
|
|
|
|
|
</head>
|
2022-07-25 21:23:40 -04:00
|
|
|
<body style=" margin: 0px; overflow: hidden;">
|
|
|
|
|
<div id="app" style="width: 100vw; height: 100vh;"></div>
|
2022-07-20 16:04:09 -04:00
|
|
|
<script src="./src/index.tsx" type="module"></script>
|
|
|
|
|
</body>
|
2022-07-19 18:07:59 -04:00
|
|
|
</html>
|