-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ejs
36 lines (36 loc) · 1.23 KB
/
index.ejs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="theme-color" content="#db5945">
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width"/>
<title><%= htmlWebpackPlugin.options.title %></title>
<style>
* {
user-select: none;
box-sizing: border-box;
font-family: Roboto, sans-serif, "Open Sans", "Helvetica Neue",
Helvetica, Arial, "Source Sans Pro";
-webkit-font-smoothing: antialiased;
-webkit-appearance: none;
-webkit-tap-highlight-color: transparent;
}
body {
padding: 1em;
margin: auto auto;
height: 100vh;
width: 100vw;
overflow: hidden;
}
</style>
</head>
<body>
<noscript>Для работы приложения необходимо подключить javascript</noscript>
<div id="root"></div>
</body>
</html>