- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
30 lines (26 loc) · 1.08 KB
/
Copy pathindex.html
File metadata and controls
30 lines (26 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<title>Angular QuickStart</title>
<metacharset="UTF-8">
<metaname="viewport" content="width=device-width, initial-scale=1">
<linkrel="stylesheet" href="styles.css">
<linkhref="node_modules/ng2-toastr/bundles/ng2-toastr.min.css" rel="stylesheet" />
<!-- Polyfill(s) for older browsers -->
<scriptsrc="node_modules/core-js/client/shim.min.js"></script>
<scriptsrc="node_modules/zone.js/dist/zone.js"></script>
<scriptsrc="node_modules/reflect-metadata/Reflect.js"></script>
<scriptsrc="node_modules/systemjs/dist/system.src.js"></script>
<scriptsrc="systemjs.config.js"></script>
<script>
System.import('app').catch(function(err){console.error(err);});
</script>
<!-- Shim for Ahead of time AoT compile https://angular.io/docs/ts/latest/cookbook/aot-compiler.html -->
<!--<script>window.module = 'aot';</script>-->
<scriptsrc="https://cdn.auth0.com/js/lock/10.6/lock.min.js"></script>
<basehref="/">
</head>
<body>
<my-app>Loading AppComponent content here ...</my-app>
</body>
</html>