This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- preloaded critical path scripts --> | |
<link rel="preload" href="Common.js" as="script" /> | |
<link rel="preload" href="Consumer.js" as="script" /> | |
<!-- preloaded async route bundles --> | |
<link rel="preload" href="SomeConsumerRoute.js" as="script" /> | |
... | |
<!-- critical path scripts to load the initial page --> | |
<script src="Common.js" type="text/javascript"></script> | |
<script src="Consumer.js" type="text/javascript"></script> | |
<script src="SomeConsumerRoute.js" type="text/javascript" async></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- preloaded async route bundles --> | |
<link rel="preload" href="SomeConsumerRoute.js" as="script" /> | |
<link rel="preload" href="..." as="script" /> | |
... | |
<!-- critical path scripts to load the initial page --> | |
<script src="Common.js" type="text/javascript"></script> | |
<script src="Consumer.js" type="text/javascript"></script> |
NewerOlder