cache busting JS files

This commit is contained in:
2025-05-28 21:55:26 +02:00
parent c8dd4ac165
commit 4f8261bda9
13 changed files with 30 additions and 22 deletions

View File

@@ -200,8 +200,8 @@
window.currentUserId = "{{ current_user.id }}";
window.sendMessageUrl = "{{ url_for('conversations.send_message', conversation_id=conversation.id) }}";
</script>
<script src="{{ url_for('static', filename='js/chat-manager.js') }}"></script>
<script src="{{ url_for('static', filename='js/conversation.js') }}"></script>
<script src="{{ url_for('static', filename='js/member-management.js') }}"></script>
<script src="{{ url_for('static', filename='js/chat-manager.js', v=config.CSS_VERSION) }}"></script>
<script src="{{ url_for('static', filename='js/conversation.js', v=config.CSS_VERSION) }}"></script>
<script src="{{ url_for('static', filename='js/member-management.js', v=config.CSS_VERSION) }}"></script>
{% endblock %}
{% endblock content %}