epic_explorer/src/index.html
2019-08-07 15:40:03 +05:30

26 lines
723 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Epic Explorer - Home</title>
<base href="/">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--
<link rel="icon" type="image/x-icon" href="favicon.ico">
-->
</head>
<body>
<app-root></app-root>
</body>
<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>
</html>