forked from sonicoder86/angular2-aot-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (18 loc) · 715 Bytes
/
index.html
File metadata and controls
22 lines (18 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Angular 2 Production with Webpack</title>
<link rel="icon" type="image/x-icon" href="favicon.ico"/>
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/zone.js/dist/zone.min.js"></script>
<script src="node_modules/zone.js/dist/long-stack-trace-zone.min.js"></script>
</head>
<body>
<hello-world-app>Loading...</hello-world-app>
<!--<script src="dist/bootstrap.bundle.js"></script>-->
<script src="dist/bootstrap.aot.bundle.js"></script>
<!--<script src="dist/bootstrap.prod.bundle.js"></script>-->
<!--<script src="dist/bootstrap.aot.prod.bundle.js"></script>-->
</body>
</html>