forked from mgechev/angular-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 871 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 charset="UTF-8">
<title></title>
</head>
<body>
<sample-app></sample-app>
<script src="./node_modules/es6-module-loader/node_modules/traceur/bin/traceur-runtime.js"></script>
<script src="./node_modules/zone.js/zone.js"></script>
<script src="./node_modules/es6-module-loader/dist/es6-module-loader.js"></script>
<script src="./node_modules/systemjs/dist/system.js"></script>
<script>
System.paths = {
'angular2/*': './lib/angular/*.js',
'rtts_assert/*': './lib/rtts_assert/es6/src/*.js',
'app': './dev/app.js',
'services/*' : './dev/services/*.js'
};
System.import('app')
.then(function (app) {
app.default();
}, function (e) {
console.error('Something terrible just happened...Open new issue at https://github.com/mgechev/angular2-seed', e);
});
</script>
</body>
</html>