We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 516a330 commit 6641d25Copy full SHA for 6641d25
1 file changed
dist/bitrise-navigation.html
@@ -69,7 +69,12 @@
69
<bitrise-navigation></bitrise-navigation>
70
71
<!-- Load the component script (production: from CDN, dev: local) -->
72
- <script src="/bitrise-navigation.js"></script>
+ <script>
73
+ const script = document.createElement('script');
74
+ script.src = `/bitrise-navigation.js?v=${Date.now()}`; // Cache-busting for development; use CDN URL in production
75
+ script.async = true;
76
+ document.head.appendChild(script);
77
+ </script>
78
79
<!-- ====================================================================
80
DOCUMENTATION
0 commit comments