Having issues with the latest 4.0 version of django-tinymce where assets are not refreshed in the browser?
- Make sure you add a cache busting query param to
tinymce.min.js
APP_VERSION = "1.0.0"
...
TINYMCE_JS_URL = f"/static/tinymce/tinymce.min.js?app_version={APP_VERSION}"
- Add cache suffix so any asset loaded by tinymce gets the same cache busting query.