-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (17 loc) · 700 Bytes
/
index.html
File metadata and controls
21 lines (17 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<title>ngMetadata QuickStart</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 1. Load SystemJS + Reflect metadata -->
<script src="node_modules/systemjs/dist/system-polyfills.js"></script>
<script src="node_modules/systemjs/dist/system.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<!-- 2. Configure SystemJS for ngMetadata -->
<script src="systemjs.conf.js">/*config SystemJS with entrypoint 'app/startup'*/</script>
<link rel="stylesheet" href="styles.css">
</head>
<!-- 3. Display the application -->
<body>
<my-app>Loading...</my-app>
</body>
</html>