mirror of
https://github.com/tomasvarg/systemjs-es2015-minimal.git
synced 2026-03-01 08:28:49 +00:00
21 lines
624 B
HTML
21 lines
624 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>SystemJS es2015 Sample</title>
|
|
</head>
|
|
<body>
|
|
<div id="whatever-app"></div>
|
|
<!--
|
|
<script src="https://raw.githack.com/zloirock/core-js/v2.5.1/client/core.min.js"></script>
|
|
<script src="https://raw.githack.com/zloirock/core-js/v2.5.1/client/shim.min.js"></script>
|
|
-->
|
|
<script src="node_modules/promise-polyfill/promise.js"></script>
|
|
<script src="node_modules/systemjs/dist/system.src.js"></script>
|
|
<script src="system.config.js"></script>
|
|
<script>
|
|
System.import('index.js');
|
|
</script>
|
|
</body>
|
|
</html>
|