django 2.2 disable cache settings.STATIC_URL code example
Example: django 2.2 disable cache settings.STATIC_URL
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
}
}
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
}
}