-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
42 lines (37 loc) · 1.1 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<base href="./" />
<link type="text/css" rel="stylesheet" href="assets/global.css">
</head>
<body>
<my-app class="test-app">
<div class="app-loading">
<div class="loading-icon"></div>
<div class="loading-text"> Loading...</div>
</div>
</my-app>
<!-- dev -->
<script src="node_modules\zone.js\dist\zone.js"></script>
<script src="node_modules\reflect-metadata\Reflect.js"></script>
<script src="node_modules\es6-shim\es6-shim.js"></script>
<script src="node_modules\tslib\tslib.js"></script>
<script src="node_modules/systemjs/dist/system.js"></script>
<script src="build-tools/systemjs-config.js"></script>
<script>
System.import('dist-dev/rxjs.js').then(function () {
System.import('app/main');
});
</script>
<!-- end-dev -->
<!-- prod --
<script>
var module = {};
</script>
<script src="common.min.js"></script>
<script src="app.min.js"></script>
-- end-prod -->
</body>
</html>