main
tag: launch-2026-06-01
tag: magicmirror-v0.1.1
tag: magicmirror-v0.3.0
tag: mnw-cli-v0.1.2
tag: mnw-cli-v0.1.3
tag: mnw-cli-v0.1.4
tag: pom-v0.4.1
tag: pom-v0.4.2
tag: pom-v0.4.3
tag: pom-v0.4.4
tag: pom-v0.4.5
tag: wam-v0.3.0
tag: wam-v0.3.1
Files
Commits
Tags
Notes
Issues
Add cache-busting query params to script tags
Cloudflare cached 404s for static JS files from a previous deploy.
Adding version params forces fresh fetches.
Co-Authored-By
Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2 files changed,
+6 insertions,
-5 deletions
35
35
<!-- Toast notification container -->
36
36
<div id="notifications" class="toast-container" role="alert" aria-live="polite"></div>
37
37
38
-
<script src="/static/mnw.js"></script>
39
-
<script src="/static/collections.js"></script>
38
+
<script src="/static/mnw.js?v=0512"></script>
39
+
<script src="/static/collections.js?v=0512"></script>
40
40
{% block scripts %}{% endblock %}
41
41
</body>
42
42
</html>
122
122
{% endblock %}
123
123
124
124
{% block scripts %}
125
-
<script src="/static/media-picker.js"></script>
126
-
<script src="/static/item-details.js"></script>
127
-
<script src="/static/item-upload.js"></script>
125
+
<script src="/static/upload.js?v=0512"></script>
126
+
<script src="/static/media-picker.js?v=0512"></script>
127
+
<script src="/static/item-details.js?v=0512"></script>
128
+
<script src="/static/item-upload.js?v=0512"></script>
128
129
{% endblock %}