2016-09-14 13:10:04 -04:00
|
|
|
<!-- #docregion -->
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Ahead of time compilation</title>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="styles.css">
|
|
|
|
|
|
|
|
<script src="node_modules/core-js/client/shim.min.js"></script>
|
|
|
|
<script src="node_modules/zone.js/dist/zone.js"></script>
|
2016-11-30 02:52:20 -05:00
|
|
|
<!-- #docregion moduleId -->
|
|
|
|
<script>window.module = 'aot';</script>
|
|
|
|
<!-- #enddocregion moduleId -->
|
2016-09-14 13:10:04 -04:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<!-- #docregion bundle -->
|
|
|
|
<body>
|
|
|
|
<my-app>Loading...</my-app>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
<script src="dist/build.js"></script>
|
|
|
|
<!-- #enddocregion bundle -->
|
|
|
|
</html>
|