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:
Alessandro Benedetti Admin 2026-03-12 17:52:49 +00:00
parent 6fd89761f0
commit 878f231574
2 changed files with 2 additions and 2 deletions

View file

@ -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>

View file

@ -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();