- Introduced a new script to unregister service workers, enhancing control over service worker lifecycle. - Updated index.html to include the unregister script, ensuring it is loaded for proper service worker management.
27 lines
925 B
HTML
27 lines
925 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="./favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="theme-color" content="#2b2b2b" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<title>Worklenz</title>
|
|
<!-- Environment configuration -->
|
|
<script src="/env-config.js"></script>
|
|
<!-- Unregister service worker -->
|
|
<script src="/unregister-sw.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="root"></div>
|
|
<script type="module" src="./src/index.tsx"></script>
|
|
</body>
|
|
</html>
|