angular/packages/examples/upgrade/index.html
Paul Gschwendtner 642d009501 refactor: switch packages/examples to ESM-compatible http server (#48521)
* Switches all examples to use dev-infra's canonical ESM-compatible
  `http_server`.
* Uses ESBuild for bundling ESM into a single file, compared to having
  to load hundreds of individual ESM files in the browser (potential
  source of flakiness & slowness).

PR Close #48521
2022-12-19 19:50:44 +00:00

20 lines
632 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Angular Upgrade Examples</title>
<base href="/" />
<!-- Prevent the browser from requesting any favicon. This could throw off the console
output checks. -->
<link rel="icon" href="data:," />
</head>
<body>
<example-app>Loading...</example-app>
<script src="/angular/packages/zone.js/bundles/zone.umd.js"></script>
<script src="/npm/node_modules/angular-1.8/angular.js"></script>
<script src="/npm/node_modules/reflect-metadata/Reflect.js"></script>
<script src="/app_bundle.js"></script>
</body>
</html>