generated from nhcarrigan/template
009a68a0d2
The PWA implementation was causing too many issues: - Service worker conflicts with CSP policies - 429 rate limiting errors - Application freezing - External resource blocking Removed: - service-worker.js - manifest.json - offline.html - PWA service and install component - PWA meta tags from index.html - PWA asset configuration The library now functions as a standard web app without PWA features. This provides a more stable and reliable user experience.
28 lines
1.1 KiB
HTML
28 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Naomi's Library</title>
|
|
<base href="/" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="description" content="Naomi's curated collection of games, books, music, shows, manga, and art. Browse, engage, and suggest new additions!" />
|
|
<meta name="theme-color" content="#9d4edd" />
|
|
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
|
<script defer src="https://analytics.nhcarrigan.com/js/pa-YUXAn1vhhRttySUAw_LMN.js"></script>
|
|
<script>
|
|
window.plausible=window.plausible||function(){(plausible.q=plausible.q||[]).push(arguments)},plausible.init=plausible.init||function(i){plausible.o=i||{}};
|
|
plausible.init({
|
|
customProperties: {
|
|
domain: "library.nhcarrigan.com",
|
|
page: "Naomi's Library",
|
|
path: "/",
|
|
},
|
|
});
|
|
</script>
|
|
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3569924701890974" crossorigin="anonymous"></script>
|
|
</head>
|
|
<body>
|
|
<app-root></app-root>
|
|
</body>
|
|
</html>
|