Currently all playground examples are built with `tsc` and served with the `gulp serve` task. In order to be able to test these examples easily with Ivy, we now build and serve the examples using Bazel. This allows us to expand our Ivy test coverage and additionally it allows us to move forward with the overall Bazel migration. Building & serving individual examples is now very easy and doesn't involve building everything inside of `/modules`. PR Close #28490
23 lines
821 B
HTML
23 lines
821 B
HTML
<!doctype html>
|
|
<html>
|
|
<title>Routing Example</title>
|
|
<link rel="stylesheet" type="text/css" href="./css/gumby.css">
|
|
<link rel="stylesheet" type="text/css" href="./css/app.css">
|
|
<base href="/">
|
|
<body>
|
|
<inbox-app>
|
|
Loading...
|
|
</inbox-app>
|
|
</body>
|
|
<!--
|
|
We are manually loading the scripts because we don't use ConcatJS for this example.
|
|
This is because we want to use SystemJS instead of RequireJS and want to support
|
|
lazy loading of routes. Read more in the "load-app.js" file.
|
|
-->
|
|
<script src="ngdeps/node_modules/zone.js/dist/zone.js"></script>
|
|
<script src="ngdeps/node_modules/reflect-metadata/Reflect.js"></script>
|
|
<script src="ngdeps/node_modules/systemjs/dist/system.js"></script>
|
|
<script src="angular/modules/playground/systemjs-config.js"></script>
|
|
<script src="load-app.js"></script>
|
|
</html>
|