My config is as follows:
STATIC_URL = '/static/'
MEDIA_URL = '/static/media/'
And since I upgraded django 2.1 to 2.2 I get:
"runserver can't serve media if MEDIA_URL is within STATIC_URL."
django.core.exceptions.ImproperlyConfigured: runserver can't serve media if MEDIA_URL is within STATIC_URL.
I understand the error. My question is "why not"? There are very valid reasons you'd want media as a subdirectory to static.
Also, there's zero mention of this breaking change in the 2.2 release notes: https://docs.djangoproject.com/en/3.0/releases/2.2/