ultrawidify/src/popup/popup.html

18 lines
395 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="popup.css">
<% if (NODE_ENV === 'development') { %>
<!-- Load some resources only in development environment -->
<% } %>
</head>
2019-01-17 22:16:55 +01:00
<body style="width: 800px; height: 600px; overflow-x: hidden">
<div id="app">
</div>
<script src="popup.js"></script>
</body>
</html>