mirror of
https://github.com/jlengrand/undercover.git
synced 2026-03-10 08:51:23 +00:00
35 lines
815 B
HTML
35 lines
815 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
|
|
<meta name="Description" content="Put your description here." />
|
|
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-color: #ededed;
|
|
}
|
|
</style>
|
|
<title>under-cover</title>
|
|
</head>
|
|
<body>
|
|
<under-cover></under-cover>
|
|
<script>
|
|
// HACK(keanulee): The Redux package assumes `process` exists - mock it here before
|
|
// the module is loaded.
|
|
window.process = {
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
},
|
|
};
|
|
</script>
|
|
<script type="module" src="./src/under-cover.js"></script>
|
|
</body>
|
|
</html>
|