23 lines
547 B
HTML
23 lines
547 B
HTML
|
<!-- #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>
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<!-- #docregion bundle -->
|
||
|
<body>
|
||
|
<my-app>Loading...</my-app>
|
||
|
</body>
|
||
|
|
||
|
<script src="dist/build.js"></script>
|
||
|
<!-- #enddocregion bundle -->
|
||
|
</html>
|