index.html 281 B

123456789101112131415
  1. <html>
  2. <head>
  3. <script src="libs/systemjs/dist/system.js"></script>
  4. <script src="systemjs.config.js"></script>
  5. <script>
  6. SystemJS.import("app").catch(function(err){ console.error(err); });
  7. </script>
  8. </head>
  9. <body>
  10. <h1>SystemJS Test</h1>
  11. </body>
  12. </html>