fix(index.html): change env-config.js script type for compatibility

- Updated the script tag for env-config.js in index.html to remove the type="module" attribute, ensuring better compatibility with existing code.
This commit is contained in:
chamiakJ
2025-05-14 18:43:07 +05:30
parent b5c5225867
commit c52b223c59

View File

@@ -13,7 +13,7 @@
/>
<title>Worklenz</title>
<!-- Environment configuration -->
<script type="module" src="/env-config.js"></script>
<script src="/env-config.js"></script>
<!-- Unregister service worker -->
<script src="/unregister-sw.js"></script>
</head>