Heroku doesn't collect static on Django but tell that it does
问题 Command heroku run python manage.py collectstatic returns me something like 163 static files copied to '/app/live-static-files/static-root', 509 post-processed. Here are my settings: MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', 'whitenoise.middleware.WhiteNoiseMiddleware', # White Noise 'django.contrib.sessions.middleware.SessionMiddleware', ... ] STATIC_URL = '/static/' STATIC_ROOT = os.path.join(BASE_DIR, "live-static-files", "static-root") STATICFILES_STORAGE =