-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
23 lines (23 loc) · 872 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>ChatProject</title>
<base href="/chatapp/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="dist/favicon.ico">
</head>
<body>
<app-root></app-root>
<script src="dist/runtime-es2015.js" type="module"></script>
<script src="dist/polyfills-es2015.js" type="module"></script>
<script src="dist/runtime-es5.js" nomodule></script>
<script src="dist/polyfills-es5.js" nomodule></script>
<script src="dist/styles-es2015.js" type="module"></script>
<script src="dist/styles-es5.js" nomodule></script>
<script src="dist/vendor-es2015.js" type="module"></script>
<script src="dist/main-es2015.js" type="module"></script>
<script src="dist/vendor-es5.js" nomodule></script>
<script src="dist/main-es5.js" nomodule></script>
</body>
</html>