Files
groceries-price-tracker/src/index.html

23 lines
721 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GroceriesPriceTracker</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="manifest" href="manifest.webmanifest">
</head>
<body>
<scan-loading-screen></scan-loading-screen>
<app-root></app-root>
<script src="/scan-loading-screen/scan-loading-screen.js" fetchpriority="high"></script>
<script>
document.addEventListener('ng-boot', () => {
document.querySelector('scan-loading-screen').remove();
})
</script>
<noscript>Please enable JavaScript to continue using this application.</noscript>
</body>
</html>