fix: add cache busters to all JS and CSS files

This commit is contained in:
you
2026-03-19 22:07:33 +00:00
parent ed153f55fc
commit f354048c51

View File

@@ -20,9 +20,9 @@
<meta name="twitter:title" content="MeshCore Analyzer">
<meta name="twitter:description" content="Real-time MeshCore LoRa mesh network analyzer — live packet visualization, node tracking, channel decryption, and route analysis.">
<meta name="twitter:image" content="https://raw.githubusercontent.com/Kpa-clawbot/meshcore-analyzer/master/public/og-image.png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style.css?v=1773958048">
<link rel="stylesheet" href="home.css">
<link rel="stylesheet" href="live.css">
<link rel="stylesheet" href="live.css?v=1773958048">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin="anonymous">
@@ -75,15 +75,15 @@
<main id="app" role="main"></main>
<script src="vendor/qrcode.js"></script>
<script src="app.js"></script>
<script src="home.js"></script>
<script src="packets.js"></script>
<script src="map.js" onerror="console.error('Failed to load:', this.src)"></script>
<script src="channels.js" onerror="console.error('Failed to load:', this.src)"></script>
<script src="nodes.js" onerror="console.error('Failed to load:', this.src)"></script>
<script src="traces.js" onerror="console.error('Failed to load:', this.src)"></script>
<script src="analytics.js" onerror="console.error('Failed to load:', this.src)"></script>
<script src="live.js" onerror="console.error('Failed to load:', this.src)"></script>
<script src="observers.js" onerror="console.error('Failed to load:', this.src)"></script>
<script src="app.js?v=1773958048"></script>
<script src="home.js?v=1773958048"></script>
<script src="packets.js?v=1773958048"></script>
<script src="map.js?v=1773958048" onerror="console.error('Failed to load:', this.src)"></script>
<script src="channels.js?v=1773958048" onerror="console.error('Failed to load:', this.src)"></script>
<script src="nodes.js?v=1773958048" onerror="console.error('Failed to load:', this.src)"></script>
<script src="traces.js?v=1773958048" onerror="console.error('Failed to load:', this.src)"></script>
<script src="analytics.js?v=1773958048" onerror="console.error('Failed to load:', this.src)"></script>
<script src="live.js?v=1773958048" onerror="console.error('Failed to load:', this.src)"></script>
<script src="observers.js?v=1773958048" onerror="console.error('Failed to load:', this.src)"></script>
</body>
</html>