This repository was archived by the owner on Sep 15, 2025. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
executable file
·38 lines (33 loc) · 1.38 KB
/
Copy pathindex.html
File metadata and controls
executable file
·38 lines (33 loc) · 1.38 KB
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
<!DOCTYPE html>
<html>
<head>
<script>document.write('<base href="'+document.location+'" />');</script>
<linkrel="stylesheet" href="styles.css">
<!-- IE required polyfills, in this exact order -->
<scriptsrc="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.33.3/es6-shim.min.js"></script>
<scriptsrc="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.16/system-polyfills.js"></script>
<scriptsrc="https://code.angularjs.org/2.0.0-beta.0/angular2-polyfills.js"></script>
<scriptsrc="https://code.angularjs.org/tools/system.js"></script>
<scriptsrc="https://code.angularjs.org/tools/typescript.js"></script>
<scriptsrc="https://code.angularjs.org/2.0.0-beta.0/Rx.js"></script>
<scriptsrc="https://code.angularjs.org/2.0.0-beta.0/angular2.dev.js"></script>
<scriptsrc="https://code.angularjs.org/2.0.0-beta.0/router.dev.js"></script>
<script>
System.config({
transpiler: 'typescript',
typescriptOptions: {emitDecoratorMetadata: true},
packages: {'app': {defaultExtension: 'ts'}}
});
System.import('app/boot')
.then(null,console.error.bind(console));
</script>
</head>
<body>
<my-app>Loading...</my-app>
</body>
</html>
<!--
Copyright 2016 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license
-->