forked from johnpapa/angular-tour-of-heroes
-
Notifications
You must be signed in to change notification settings - Fork 30
/
index.html
39 lines (36 loc) · 851 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
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<base href="/">
<link rel="stylesheet" href="styles.css">
<script src="lib/angular2-polyfills.js"></script>
<script src="lib/system.src.js"></script>
<script src="lib/Rx.js"></script>
<script src="lib/angular2.dev.js"></script>
<script src="lib/router.dev.js"></script>
<script>
System.config({
packages: {
app: {
format: 'register',
defaultExtension: 'js'
},
'node-uuid': {
map: {
crypto: '@empty'
}
}
},
map: {
immutable: 'lib/immutable.js',
'node-uuid': 'lib/uuid.js'
}
});
System.import('app/boot')
.then(null, console.error.bind(console));
</script>
</head>
<body>
<my-app>Loading...</my-app>
</body>
</html>