forked from VD39/typescript-webpack-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (24 loc) · 762 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Tags -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- Favicon -->
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<!-- Title -->
<title>TypeScript Webpack Boilerplate</title>
</head>
<body>
<!-- No script message -->
<noscript>
This website will not work without JavaScript, please enable JavaScript to view.
</noscript>
<!-- No script message end -->
<!-- Root -->
<div id="root" class="root"></div>
<!-- Root end -->
</body>
</html>