Blocked on https://github.com/angular/in-memory-web-api/pull/86 As per https://github.com/zloirock/core-js/issues/152, `core-js` already includes `reflect-metadata`.
		
			
				
	
	
		
			36 lines
		
	
	
		
			1012 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1012 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
|   <head>
 | |
|     <title>Angular Quickstart</title>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
|     <style>
 | |
|       body {color:#369;font-family: Arial,Helvetica,sans-serif;}
 | |
|     </style>
 | |
| 
 | |
|     <!-- Polyfills for older browsers -->
 | |
|     <!-- #docregion polyfills -->
 | |
|     <script src="node_modules/core-js/client/shim.min.js"></script>
 | |
|     <!-- #enddocregion polyfills -->
 | |
| 
 | |
|     <script src="node_modules/zone.js/dist/zone.js"></script>
 | |
|     <script src="node_modules/systemjs/dist/system.src.js"></script>
 | |
| 
 | |
|     <!-- #docregion autobootstrap-->
 | |
|     <script> window.autoBootstrap = true; </script>
 | |
|     <!-- #enddocregion autobootstrap-->
 | |
| 
 | |
|     <script src="systemjs.config.js"></script>
 | |
|     <script>
 | |
|       System.import('app').catch(function(err){ console.error(err); });
 | |
|     </script>
 | |
|   </head>
 | |
| 
 | |
|   <body>
 | |
|     <!-- #docregion my-app-->
 | |
|     <my-app>Loading AppComponent content here ...</my-app>
 | |
|     <!-- #enddocregion my-app-->
 | |
|   </body>
 | |
| 
 | |
| </html>
 |