Skip to content

Instantly share code, notes, and snippets.

@hypeJunction
Created October 17, 2020 09:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hypeJunction/71150410544f1e6249f403d80a52f40f to your computer and use it in GitHub Desktop.
Save hypeJunction/71150410544f1e6249f403d80a52f40f to your computer and use it in GitHub Desktop.
<script type="module" src="critical.js"></script>
<script defer type="module" src="critical.js"></script>
<script async type="module" src="critical.js"></script>
<script async defer type="module" src="critical.js"></script>
<script type="module">
import('critical.js');
</script>
<script async type="module">
import('critical.js');
</script>
<script defer type="module">
import('critical.js');
</script>
<script async defer type="module">
import('critical.js');
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment