26 lines
723 B
HTML
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>
|