fix(i18n): add cache-busting version strings to privacy page scripts
SUMMARY: Added version query strings to script tags on privacy.html to force browser cache refresh for i18n updates. CHANGES: - Added ?v=20251019145500 to i18n-simple.js - Added ?v=20251019145500 to language-selector.js - Added ?v=20251019145500 to footer.js IMPACT: Users will now load the updated JavaScript that knows how to load common.json for footer translations. Prevents stale cache issues. 🤖 Generated with Claude Code (https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
780becc9ea
commit
976a9423e1
1 changed files with 3 additions and 3 deletions
|
|
@ -29,8 +29,8 @@
|
|||
<script src="/js/components/navbar.js?v=0.1.0.1760254958072"></script>
|
||||
|
||||
<!-- i18n Support -->
|
||||
<script src="/js/i18n-simple.js"></script>
|
||||
<script src="/js/components/language-selector.js"></script>
|
||||
<script src="/js/i18n-simple.js?v=20251019145500"></script>
|
||||
<script src="/js/components/language-selector.js?v=20251019145500"></script>
|
||||
|
||||
<!-- Main Content -->
|
||||
<main id="main-content" class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
|
||||
|
|
@ -246,7 +246,7 @@
|
|||
</main>
|
||||
|
||||
<!-- Footer -->
|
||||
<script src="/js/components/footer.js"></script>
|
||||
<script src="/js/components/footer.js?v=20251019145500"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue