epic_explorer/src/index.html

26 lines
723 B
HTML
Raw Normal View History

2019-06-27 12:18:08 +05:30
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
2019-07-24 13:47:47 +05:30
<title>Epic Explorer - Home</title>
2019-06-27 12:18:08 +05:30
<base href="/">
2019-08-05 12:13:48 +05:30
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
2019-06-27 12:18:08 +05:30
<meta name="viewport" content="width=device-width, initial-scale=1">
2019-07-18 17:25:45 +05:30
<!--
2019-06-27 12:18:08 +05:30
<link rel="icon" type="image/x-icon" href="favicon.ico">
2019-07-18 17:25:45 +05:30
-->
2019-06-27 12:18:08 +05:30
</head>
<body>
<app-root></app-root>
</body>
2019-08-07 15:40:03 +05:30
<script>
navigator.serviceWorker.getRegistrations().then(function(registrations) {
console.log('checking the service worker registertion...', registrations);
for(let registration of registrations) {
registration.unregister();
}
console.log('service workers unregistered successfully.');
})
</script>
2019-06-27 12:18:08 +05:30
</html>