insomnia/packages/insomnia-app/app/index.html

27 lines
738 B
HTML
Raw Normal View History

2016-03-22 18:20:05 +00:00
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta
http-equiv="Content-Security-Policy"
content="font-src 'self' data:; default-src * insomnia://*; img-src blob: data: * insomnia://*; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src blob: data: mediastream: * insomnia://*;"
/>
</head>
<body>
<div id="root"></div>
2020-04-26 20:33:39 +00:00
<div
id="dropdowns-container"
style="
z-index: 99999;
position: fixed;
right: -90000px;
top: -90000px;
width: 100vw;
height: 100vh;
"
2020-04-26 20:33:39 +00:00
></div>
<div id="graphql-explorer-container"></div>
<script src="./renderer.ts" type="module"></script>
</body>
2016-03-22 18:20:05 +00:00
</html>