fire.app/stubs/index.html
2020-02-08 13:37:13 +03:00

26 lines
967 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link
href="https://fonts.googleapis.com/css?family=Montserrat:400,600,700,900&amp;subset=cyrillic,cyrillic-ext"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Занятие по загрузчику</title>
<script type="systemjs-importmap" src="/importmap.json"></script>
<script src="extlib/systemjs/system.js"></script>
<script src="extlib/systemjs/extras/amd.js"></script>
<script src="extlib/systemjs/extras/named-register.js"></script>
<script src="extlib/systemjs/extras/named-exports.js"></script>
<script src="extlib/systemjs/extras/transform.js"></script>
</head>
<body>
<script type="text/javascript">
System.import('./bootstrap.js');
</script>
<div id="bootstrap"></div>
<div id="app"></div>
</body>
</html>