Add cache-busting version strings to script.js and config.json
Browsers were serving stale cached files after deploy. Added ?v=2026031201 query params to force fresh loads. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
6fd89761f0
commit
878f231574
2 changed files with 2 additions and 2 deletions
|
|
@ -757,6 +757,6 @@
|
|||
</div><!-- /appContainer -->
|
||||
|
||||
<script src="auth.js"></script>
|
||||
<script src="script.js"></script>
|
||||
<script src="script.js?v=2026031201"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ document.addEventListener('DOMContentLoaded', async () => {
|
|||
|
||||
async function loadConfig() {
|
||||
try {
|
||||
const res = await fetch('config.json');
|
||||
const res = await fetch('config.json?v=2026031201');
|
||||
CONFIG = await res.json();
|
||||
populateBriefTypes();
|
||||
populateStageDropdowns();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue