1👍
Did you define ‘config’ folder in settings.py? Looks like you are misunderstanding how static files works in django.
If you want to use ‘config’ folder for static files you should define it in settings.py. For example you can try implement mupltiple dirs for static files:
STATICFILES_DIRS = [
BASE_DIR / "static",
BASE_DIR / "config",
]
There could be a better aproach for your case. So I advise you to take a deeper look at offical docs.
👤Alex
Source:stackexchange.com