Try forcing reload of styles

This commit is contained in:
Bojan Mojsilovic 2023-11-18 00:08:06 +01:00
parent 7c5fc579d5
commit 5e75abb239
1 changed files with 7 additions and 0 deletions

View File

@ -19,6 +19,13 @@
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script>
var style = document.querySelectorAll('style');
for (var q=0; q<style.length; ++q) {
style[q].innerHTML += " ";
}
</script>
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<script src="/src/index.tsx" type="module"></script>
</body>