mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
18 lines
380 B
HTML
18 lines
380 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Insomnia REST Client</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script>
|
|
(function () {
|
|
const script = document.createElement('script');
|
|
script.src = (process.env.HOT) ? 'http://localhost:3333/dist/bundle.js' : '../dist/bundle.js';
|
|
document.write(script.outerHTML);
|
|
}());
|
|
</script>
|
|
</body>
|
|
</html>
|