insomnia/packages/insomnia-app/app/renderer.html

27 lines
727 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"
2020-04-26 21:08:50 +00:00
content="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="bundle.js" type="application/javascript"></script>
</body>
2016-03-22 18:20:05 +00:00
</html>