Skip to content

Instantly share code, notes, and snippets.

@marteinn
Created May 6, 2024 04:13
Show Gist options
  • Save marteinn/ab356d54de78a80c5ba31a46c82f1f4b to your computer and use it in GitHub Desktop.
Save marteinn/ab356d54de78a80c5ba31a46c82f1f4b to your computer and use it in GitHub Desktop.
How to solve cache busting issue in django-tinymce 4.0

Having issues with the latest 4.0 version of django-tinymce where assets are not refreshed in the browser?

  1. 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}"
  1. Add cache suffix so any asset loaded by tinymce gets the same cache busting query.
TINYMCE_DEFAULT_CONFIG = {
    ...
    "cache_suffix": f"?v={APP_VERSION}",
    ...
}

Done!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment