-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
25 lines (25 loc) · 988 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="/style.css"/>
<link rel="stylesheet" type="text/css" href="/node_modules/bootstrap/dist/css/bootstrap.min.css"/>
<script src="/node_modules/core-js/client/shim.min.js"></script>
<script src="/node_modules/zone.js/dist/zone.min.js"></script>
<!--<script src="node_modules/reflect-metadata/Reflect.js"></script>-->
<script src="/node_modules/systemjs/dist/system.js"></script>
<script src="/systemjs.config.js"></script>
<title>Bug Tracker</title>
<base href="/"/>
</head>
<body>
<script src="app/bundle.min.js"></script>
<!-- <script>
System.import('app').then(function(){
console.log("Application bootstrapped")
}).catch(function(err){
console.log("Error occured ", err)
})
</script> -->
<my-app></my-app>
</body>
</html>